std::set<Key,Compare,Allocator>::count (3) - Linux Manuals
std::set<Key,Compare,Allocator>::count: std::set<Key,Compare,Allocator>::count
Command to display std::set<Key,Compare,Allocator>::count
manual in Linux: $ man 3 std::set<Key,Compare,Allocator>::count
NAME
std::set<Key,Compare,Allocator>::count - std::set<Key,Compare,Allocator>::count
Synopsis
size_type count( const Key& key ) const; (1)
template< class K > (2) (since C++14)
size_type count( const K& x ) const;
Returns the number of elements with key that compares equivalent to the specified argument, which is either 1 or 0 since this container does not allow duplicates.
1) Returns the number of elements with key key.
2) Returns the number of elements with key that compares equivalent to the value x. This overload only participates in overload resolution if the qualified-id Compare::is_transparent is valid and denotes a type. They allow calling this function without constructing an instance of Key.
Parameters
key - key value of the elements to count
x - alternative value to compare to the keys
Return value
Number of elements with key that compares equivalent to key or x, which is either 1 or 0 for (1).
Complexity
Logarithmic in the size of the container.
See also
finds element with specific key
find (public member function)
returns range of elements matching a specific key
equal_range (public member function)
Pages related to std::set<Key,Compare,Allocator>::count
- std::set<Key,Compare,Allocator>::contains (3) - std::set<Key,Compare,Allocator>::contains
- std::set<Key,Compare,Allocator>::clear (3) - std::set<Key,Compare,Allocator>::clear
- std::set<Key,Compare,Allocator>::begin,std::set<Key,Compare,Allocator>::cbegin (3) - std::set<Key,Compare,Allocator>::begin,std::set<Key,Compare,Allocator>::cbegin
- std::set<Key,Compare,Allocator>::emplace (3) - std::set<Key,Compare,Allocator>::emplace
- std::set<Key,Compare,Allocator>::emplace_hint (3) - std::set<Key,Compare,Allocator>::emplace_hint
- std::set<Key,Compare,Allocator>::empty (3) - std::set<Key,Compare,Allocator>::empty
- std::set<Key,Compare,Allocator>::end,std::set<Key,Compare,Allocator>::cend (3) - std::set<Key,Compare,Allocator>::end,std::set<Key,Compare,Allocator>::cend
- std::set<Key,Compare,Allocator>::equal_range (3) - std::set<Key,Compare,Allocator>::equal_range
- std::set<Key,Compare,Allocator>::erase (3) - std::set<Key,Compare,Allocator>::erase
- std::set<Key,Compare,Allocator>::extract (3) - std::set<Key,Compare,Allocator>::extract
- std::set<Key,Compare,Allocator>::find (3) - std::set<Key,Compare,Allocator>::find
- std::set<Key,Compare,Allocator>::get_allocator (3) - std::set<Key,Compare,Allocator>::get_allocator
- std::set<Key,Compare,Allocator>::insert (3) - std::set<Key,Compare,Allocator>::insert
- std::set<Key,Compare,Allocator>::key_comp (3) - std::set<Key,Compare,Allocator>::key_comp
- std::set<Key,Compare,Allocator>::lower_bound (3) - std::set<Key,Compare,Allocator>::lower_bound
- std::set<Key,Compare,Allocator>::max_size (3) - std::set<Key,Compare,Allocator>::max_size
- std::set<Key,Compare,Allocator>::merge (3) - std::set<Key,Compare,Allocator>::merge
- std::set<Key,Compare,Allocator>::operator= (3) - std::set<Key,Compare,Allocator>::operator=
- std::set<Key,Compare,Allocator>::rbegin,std::set<Key,Compare,Allocator>::crbegin (3) - std::set<Key,Compare,Allocator>::rbegin,std::set<Key,Compare,Allocator>::crbegin
- std::set<Key,Compare,Allocator>::rend,std::set<Key,Compare,Allocator>::crend (3) - std::set<Key,Compare,Allocator>::rend,std::set<Key,Compare,Allocator>::crend
- std::set<Key,Compare,Allocator>::set (3) - std::set<Key,Compare,Allocator>::set
- std::set<Key,Compare,Allocator>::size (3) - std::set<Key,Compare,Allocator>::size
- std::set<Key,Compare,Allocator>::swap (3) - std::set<Key,Compare,Allocator>::swap
- std::set<Key,Compare,Allocator>::upper_bound (3) - std::set<Key,Compare,Allocator>::upper_bound
- std::set<Key,Compare,Allocator>::value_comp (3) - std::set<Key,Compare,Allocator>::value_comp
- std::set<Key,Compare,Allocator>::~set (3) - std::set<Key,Compare,Allocator>::~set
- std::set (3) - std::set