std::unordered_multiset<Key,Hash,KeyEqual,Allocator>::begin(size_type), std::unordered_multiset<Key,Hash,KeyEqual,Allocator>::cbegin(size_type)

 
 
 
 
local_iterator begin( size_type n );
(C++11 起)
const_local_iterator begin( size_type n ) const;
(C++11 起)
const_local_iterator cbegin( size_type n ) const;
(C++11 起)

返回指向下标为 n 的桶首元素的迭代器。

参数

n - 要访问的桶的下标

返回值

指向首元素的迭代器。

复杂度

常数。

参阅

返回一个迭代器,指向指定的桶的末尾
(公开成员函数)