std::unordered_multiset<Key,Hash,KeyEqual,Allocator>::end(size_type), std::unordered_multiset<Key,Hash,KeyEqual,Allocator>::cend(size_type)

来自cppreference.com

 
 
 
 
local_iterator end( size_type n );
(C++11 起)
const_local_iterator end( size_type n ) const;
(C++11 起)
const_local_iterator cend( size_type n ) const;
(C++11 起)

返回指向索引为 n 的桶的最后元素之后的元素的迭代器。此元素表现为占位符,试图访问它会导致未定义行为。

参数

n - 要访问的桶的索引

返回值

指向最后元素之后的元素的迭代器。

复杂度

常数。

参阅

返回指向指定的桶的开始的迭代器
(公开成员函数)