Namespaces
Variants

std::ranges::adjacent_view<V,N>:: size

From cppreference.net
Ranges library
Range adaptors
constexpr auto size ( ) requires ranges:: sized_range < V > ;
(C++23以降)
constexpr auto size ( ) const requires ranges:: sized_range < const V > ;
(C++23以降)

要素の数を返します。

base_ を基底ビューとする。次と等価:

using SizeType = decltype(ranges::size(base_));
using CommonType = ranges::common_type_t<SizeType, std::size_t>;
auto size = static_cast<CommonType>(ranges::size(base_));
size -= std::min<CommonType>(size, N - 1);
return static_cast<SizeType>(size);

目次

パラメータ

(なし)

戻り値

要素の数は、 0 になる可能性があります。これは、 ranges:: size ( base_ ) N より小さい場合です。

#include <ranges>
int main()
{
    constexpr static auto v = {1, 2, 3, 4, 5, 6};
    constexpr int width1 {4};
    constexpr auto view1 {std::views::adjacent<width1>(v)};
    static_assert(view1.size() == 3);
    static_assert(view1.size() == (v.size() - width1 + 1));
    constexpr int width2 {8};
    constexpr auto view2 {std::views::adjacent<width2>(v)};
    // ウィンドウが広すぎるため、view2には要素がありません:
    static_assert(view2.size() == 0);
}

関連項目

範囲のサイズに等しい整数を返す
(カスタマイゼーションポイントオブジェクト)
範囲のサイズに等しい符号付き整数を返す
(カスタマイゼーションポイントオブジェクト)