命名空间
变体
操作

std::ranges::adjacent_transform_view<V,F,N>::size

来自 cppreference.com
 
 
范围库
范围适配器
 
 
constexpr auto size() requires ranges::sized_range<InnerView>;
(自 C++23)
constexpr auto size() const requires ranges::sized_range<const InnerView>;
(自 C++23)

返回元素数量。

inner_InnerView 类型的底层对象(即 ranges::adjacent_view<V,N>)。

1,2) 等效于 return inner_.size();.

内容

[编辑] 参数

(无)

[编辑] 返回值

元素数量,如果底层视图 V 的大小小于 N,则可能为 0

[编辑] 示例

#include <ranges>
 
int main()
{
    constexpr static auto v = {1, 2, 3, 4, 5, 6};
 
    auto f = [](auto...) { return 0; }; // dummy
 
    constexpr int width1 {4};
    constexpr auto view1 = v | std::views::adjacent_transform<width1>(f);
    static_assert(view1.size() == 3);
    static_assert(view1.size() == (v.size() - width1 + 1));
 
    constexpr int width2 {8};
    constexpr auto view2 = v | std::views::adjacent_transform<width2>(f);
    // window is too wide, so view2 has no elements:
    static_assert(view2.size() == 0);
}

[编辑] 另请参阅

返回一个等于范围大小的整数
(定制点对象)[编辑]
返回一个等于范围大小的有符号整数
(定制点对象)[编辑]