List::Member
Defined in:
Returns a boolean value indicating whether a particular object is a member of a list.
TSList.h
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