![]() |
Home | Libraries | People | FAQ | More |
Find an element with a specific key.
object::const_iterator
find(string_view
key) const noexcept;
This function returns a constant iterator to the element matching key
if it exists, otherwise returns
end()
.
Constant on average, worst case linear in size()
.
No-throw guarantee.
Name |
Description |
---|---|
|
The key of the element to find. |