object::count
Count the number of elements with a specific key.
Synopsis
std::size_t
count(
string_view key) const noexcept;
Description
This function returns the count of the number of elements match key
. The only possible return values are 0 and 1.
Complexity
Constant on average, worst case linear in size()
.
Exception Safety
No-throw guarantee.
Parameters
Name | Description |
---|---|
|
The key of the element to find. |