Find the entry whose key dereferences to the given value.

Synopses

Declared in <indirectmap.h>

Find the entry whose key dereferences to the given value.

iterator
find(K const& key);

Find the entry whose key dereferences to the given value.

const_iterator
find(K const& key) const;

Return Value

  • An iterator to the found entry, or end() if not present.

  • A const iterator to the found entry, or end() if not present.

Parameters

Name

Description

key

The value whose address is used as the lookup key.

Created with MrDocs