List::Append
Defined in: C4List.h
Adds an object to the end of a list.
Prototype
void Append(ListElement<type> *element);
Parameters
element |
A pointer to the object to add to the list.
|
Description
The Append function adds the object specified by the element parameter to the end of a list. If the object is already a member of the list, then it is moved to the end. If the object is a member of a different list, then it is first removed from that list before being added to the new list.
See Also
List::Prepend
List::InsertBefore
List::InsertAfter
|