命名空间
变体
操作

std::ranges::drop_view<V>::end

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

返回一个哨兵或一个迭代器,表示 drop_view 的结尾。

实际上返回 ranges::end(base_),其中 base_ 是底层视图。

内容

[编辑] 参数

(无)

[编辑] 返回值

一个哨兵或一个迭代器,表示视图的结尾。

[编辑] 示例

#include <algorithm>
#include <iostream>
#include <iterator>
#include <ranges>
 
int main()
{
    namespace ranges = std::ranges;
    constexpr char url[]{"https://cppreference.com"};
 
    const auto p = std::distance(ranges::begin(url), ranges::find(url, '/'));
    auto site = ranges::drop_view{url, p + 2}; // drop the prefix "https://"
 
    for (auto it = site.begin(); it != site.end(); ++it)
        std::cout << *it;
    std::cout << '\n';
}

输出

cppreference.com

[编辑] 另请参阅

返回指向开头的迭代器
(公有成员函数) [编辑]
返回指向范围开头的迭代器
(定制点对象)[编辑]
返回一个哨兵,指示范围的结束
(定制点对象)[编辑]