exist
Bimap::exist
Declaration
template <typename T>
bool exist(const T& key) const;
Parameters
Name |
Type |
Description |
---|---|---|
key |
T |
The key to search for. |
Returns
true
if the key exists in the Bimap, else, returns false
.
Declaration
template <typename U>
bool exist(const U& key) const;
Parameters
Name |
Type |
Description |
---|---|---|
key |
U |
The key to search for. |
Returns
true
if the key exists in the Bimap, else, returns false
.