Map::Member
Defined in:
Returns a boolean value indicating whether a particular object is a member of a map.
TSMap.h
Prototype
bool Member(const MapElement<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 map, and false
otherwise.
See Also