命名空间
变体
操作

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

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

返回基础视图 base_ 的副本。

1) 从基础视图复制构造结果。等效于: return base_;
2) 从基础视图移动构造结果。等效于: return std::move(base_);

[编辑] 参数

(无)

[编辑] 返回值

基础视图的副本。

[编辑] 示例

#include <algorithm>
#include <functional>
#include <ranges>
 
int main()
{
    static constexpr auto v = {1, 1, 2, 2, 3, 3, 3};
    constexpr auto chunks = v | std::views::chunk_by(std::equal_to{});
    static_assert(std::ranges::equal(v, chunks.base()));
}