std::ranges::slide_view<V>::begin
来自 cppreference.com
< cpp | ranges | slide view
constexpr auto begin() requires (!(/*simple-view*/<V> && /*slide-caches-nothing*/<const V>)); |
(1) | (自 C++23 起) |
constexpr auto begin() const requires /*slide-caches-nothing*/<const V>; |
(2) | (自 C++23 起) |
返回指向 slide_view
的第一个元素的迭代器。
1) 如果 V 符合
slide-caches-first
,等效于return iterator<false>(
ranges::begin(base_),
ranges::next(ranges::begin(base_), n_ - 1, ranges::end(base_)),
n_
);
2) 等效于: return iterator<true>(ranges::begin(base_), n_);.
内容 |
[编辑] 参数
(无)
[编辑] 返回值
指向 slide_view
的第一个元素的 迭代器,指向可能限定为 const 的基础视图类型的 n_
大小子范围 – 对于重载 (1) 为 V,对于重载 (2) 为 const V。
[编辑] 示例
运行此代码
#include <iostream> #include <ranges> #include <string_view> using namespace std::literals; int main() { static constexpr auto source = {"∀x"sv, "∃y"sv, "ε"sv, "δ"sv}; auto view{std::ranges::slide_view(source, 2)}; const auto subrange{*(view.begin())}; for (std::string_view const s : subrange) std::cout << s << ' '; std::cout << '\n'; }
输出
∀x ∃y
[编辑] 另请参阅
返回指向结尾的迭代器或哨兵 (公共成员函数) | |
(C++23) |
将哨兵与从 slide_view::begin 返回的迭代器进行比较 (函数) |