std::multiset size() method
- od C++11
- do C++11
// Const version only
size_type size() const noexcept;
// Const version only
size_type size() const;
Returns the number of elements in the container, i.e. std::distance(begin(), end())
.
Parameters
(none)
Return value
The number of elements in the container.