◐ Shell
clean mode source ↗

std::unordered_multiset<Key,Hash,KeyEqual,Allocator>::begin(size_type), std::unordered_multiset<Key,Hash,KeyEqual,Allocator>::cbegin(size_type) - cppreference.com

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 的桶的首元素的迭代器。

参数

返回值

指向首元素的迭代器。

复杂度

常数。

参阅