The List class is an extension of the Collect class. It is used to handle a list of elements such as objects.
-
Returns a string into strBuf stating the object name and collection size.
-
Returns a pointer to the node at the specified position.
-
Returns a pointer to the last node in the collection.
-
Returns a pointer to the node before the specified one in the collection.
-
Adds the specified nodes to the front of the element list. It returns a pointer to the object.
-
Adds the specified nodes to the end of the element list. It returns a pointer to the object.
-
Adds the specified nodes to the element list after pNode. It returns a pointer to the object.
-
Returns the index of pNode in the list of elements.