名稱空間
變體
操作

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

目錄

[編輯] 引數

n - 要訪問的桶的索引

[編輯] 返回值

指向第一個元素的迭代器。

[編輯] 複雜度

常數時間。

[編輯] 參閱

返回指向指定桶末尾的迭代器
(public member function) [edit]