命名空间
变体
操作

std::ranges::drop_view<V>::base

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

返回底层视图的副本。

1) 使用底层视图 base_ 对结果进行复制构造。
2) 使用底层视图 base_ 对结果进行移动构造。

[编辑] 参数

(无)

[编辑] 返回值

底层(已适配)视图 base_ 的副本。

[编辑] 示例

#include <iostream>
#include <ranges>
 
namespace stq {
void println(auto, const auto& v)
{
    for (const auto& e : v)
        std::cout << e << ' ';
    std::cout << '\n';
}
}
 
int main()
{
    static constexpr int a[]{1, 2, 3, 4, 5};
    constexpr auto view = a | std::views::drop(2);
    stq::println("{}", view);
    const auto base = view.base();
    stq::println("{}", base);
}

输出

3 4 5
1 2 3 4 5