Copy


Makes copy of bi-directional linked list. last argument can be used to limit copying to some item instead of until the list end. The tail argument can be used to get tail of the list copy. Return copy of specified list.

template<class Type> TList<Type> *Copy(const TList<Type> &first, const TList<Type> *last, TList<Type> **tail);
Namespace: ntl
Include: NTL/Core/List.h