std::unordered_set::begin(int), std::unordered_set::cbegin(int)
来自cppreference.com
< cpp | container | unordered set
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
iterator begin( size_type n ); |
(C++11 起) | |
const_iterator begin( size_type n ) const; |
(C++11 起) | |
const_iterator cbegin( size_type n ) const; |
(C++11 起) | |
Returns an iterator to the first element of the bucket with index pos
.
目录 |
[编辑] 参数
n | - | 的索引访问铲斗
|
[编辑] 返回值
迭代器的第一个元素
[编辑] 复杂性
常数
[编辑] 另请参阅
返回一个迭代器指定的桶 原文: returns an iterator to the end of the specified bucket (公共成员函数) |