Namespaces
Variants

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

From cppreference.net
Ranges library
Range adaptors
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; }; // 虚拟函数
    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);
    // 窗口过宽,因此 view2 没有元素:
    static_assert(view2.size() == 0);
}

参见

返回等于范围大小的整数值
(定制点对象)
返回等于范围大小的有符号整数值
(定制点对象)