命名空间
变体
操作

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

来自 cppreference.com
 
 
范围库
范围适配器
 
 
constexpr V base() const& requires std::copy_constructible<V>;
(1) (自 C++20 起)
constexpr V base() &&;
(2) (自 C++20 起)

返回基础视图的副本。

1) 使用基础视图 base_ 复制构造结果。
2) 使用基础视图 base_ 移动构造结果。

[编辑] 参数

(无)

[编辑] 返回值

基础视图的副本。

[编辑] 示例

#include <algorithm>
#include <array>
#include <iostream>
#include <ranges>
 
void print(auto first, auto last)
{
    for (; first != last; ++first)
        std::cout << *first << ' ';
    std::cout << '\n';
}
 
int main()
{
    std::array data{1, 2, 3, 4, 5};
    print(data.cbegin(), data.cend());
 
    auto func = [](int x) { return x < 3; };
    auto view = std::ranges::drop_while_view{data, func};
    print(view.begin(), view.end());
 
    auto base = view.base(); // `base` refers to the `data`
    std::ranges::reverse(base); //< changes `data` indirectly
    print(data.cbegin(), data.cend());
}

输出

1 2 3 4 5
3 4 5
5 4 3 2 1