std::ranges::subrange<I,S,K>::begin
来自 cppreference.cn
constexpr I begin() const requires std::copyable<I>; |
(1) | (since C++20) |
constexpr I begin() requires (!std::copyable<I>); |
(2) | (since C++20) |
获取 subrange
的起始迭代器。
[编辑] 返回值
1)
begin_
.2) std::move(
begin_
).[编辑] 示例
此章节不完整 原因:没有示例 |
[编辑] 参见
获取结尾哨位 (public member function) | |
(C++11)(C++14) |
返回容器或数组起始的迭代器 (function template) |
(C++20) |
返回范围起始的迭代器 (customization point object) |