std::inplace_vector<T,N>::begin, std::inplace_vector<T,N>::cbegin
来自 cppreference.com
constexpr iterator begin() noexcept; |
(1) | (自 C++26 起) |
constexpr const_iterator begin() const noexcept; |
(2) | (自 C++26 起) |
constexpr const_iterator cbegin() const noexcept; |
(3) | (自 C++26 起) |
返回指向 inplace_vector
中第一个元素的迭代器。
如果 inplace_vector
为空,则返回的迭代器将等于 end()。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
指向第一个元素的迭代器。
[编辑] 复杂度
常数。
[编辑] 示例
模板:cpp/container/begin/examples/inplace vector
[编辑] 参见
返回指向末尾的迭代器 (公有成员函数) | |
(C++11)(C++14) |
返回指向容器或数组开头的迭代器 (函数模板) |