std::ranges::slide_view<V>::end

来自cppreference.com
< cpp‎ | ranges‎ | slide view
 
 
范围库
范围适配器
 
 
constexpr auto end()
    requires (!(/*simple-view*/<V> && /*slide-caches-nothing*/<const V>));
(1) (C++23 起)
constexpr auto end() const
    requires /*slide-caches-nothing*/<const V>;
(2) (C++23 起)

返回代表 slide_view 末尾的哨位迭代器

1)base_n_ 为底层数据成员。
如果 V 实现 slide-caches-last,该函数将结果缓存在 cached_end_ 中以供后续调用。这对于保证 range 所需的均摊常数复杂度是必要的。
2) 等价于 begin() + ranges::range_difference_t<const V>(size())

参数

(无)

返回值

代表 slide_view 末尾的哨位迭代器

示例

#include <iostream>
#include <ranges>
 
int main()
{
    static constexpr auto source = {'A', 'B', 'C', 'D'};
 
    for (const auto subrange: source | std::views::slide(3))
    {
        std::cout << "[ ";
        for (auto it = subrange.begin(); it != subrange.end(); ++it)
            std::cout << *it << ' ';
        std::cout << "]\n";
    }
}

输出:

[ A B C ]
[ B C D ]

参阅

返回指向起始的迭代器
(公开成员函数)
返回指向范围起始的迭代器
(定制点对象)
返回指示范围结尾的哨位
(定制点对象)