The lookUp method
finds
the specified element in the map, given its key. If the element is
found, the method places the contents of the element referenced by
the key in the element parameter, and returns the
value 1.
Signatureint lookUp(const void* theKey, void*& element) const
ParameterstheKey
The map key
element
The element to look up
ReturnsThe
method returns one of the following values:
- 0 -
The element was not found
in the map.
- 1 - The element
was
found.