List::Member
Defined in: C4List.h
Returns a boolean value indicating whether a particular object is a member of a list.
Prototype
bool Member(const ListElement<type> *element) const;
Parameters
element |
A pointer to the object to test for membership.
|
Description
The Member function returns true if the object specified by the element parameter is a member of the list, and false otherwise.
See Also
ListElement::GetOwningList
|