std::ranges::drop_while_view<V,Pred>::end

来自cppreference.com
 
 
范围库
范围适配器
 
 
constexpr auto end();
(C++20 起)

返回表示 drop_while_view 末尾的迭代器或哨位。

相当于返回 ranges::end(base_),其中 base_ 为底层视图。

参数

(无)

返回值

表示视图末尾的迭代器或哨位。

示例

#include <cassert>
#include <iostream>
#include <ranges>
 
int main()
{
    static constexpr auto data = {0, -1, -2, 3, 1, 4, 1, 5};
    auto view = std::ranges::drop_while_view{data, [](int x) { return x <= 0; }}; 
    assert(view.end()[-1] == 5);
}

参阅

返回指向起始的迭代器
(公开成员函数)