std::ranges::subrange<I,S,K>::begin
来自cppreference.com
| constexpr I begin() const requires std::copyable<I>; |
(1) | (C++20 起) |
| constexpr I begin() requires (!std::copyable<I>); |
(2) | (C++20 起) |
获得指向 subrange 开头的迭代器。
返回值
1)
begin_。2) std::move(
begin_ )。示例
| 本节未完成 原因:暂无示例 |
参阅
| 获得哨位 (公开成员函数) | |
| (C++11)(C++14) |
返回指向容器或数组起始的迭代器 (函数模板) |
| (C++20) |
返回指向范围起始的迭代器 (定制点对象) |