List::Remove
Defined in: C4List.h
Removes a particular element from a list.
Prototype
void Remove(ListElement<type> *element);
Parameters
element |
A pointer to the object to remove from the list.
|
Description
The Remove function removes the object specified by the element parameter from a list. The object must belong to list for which the Remove function is called, or the internal links will become corrupted.
See Also
List::RemoveAll
List::Purge
ListElement::Detach
|