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