Return previous element from bi-directional linked list. If list argument is empty or there is no previous element, the nullptr is returned.
template<class Type> TList<Type> *Prev(TList<Type> *list);