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

来自cppreference.com
 
 
范围库
范围访问
范围转换器
(C++23)
范围原语



悬垂迭代器处理
范围概念
视图

范围工厂
适配器
范围生成器
范围适配器对象
范围适配器闭包对象
辅助项
 
 
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);

参数

(无)

返回值

元素的数量,ranges::size(base_) 小于 N 值可能为 0

示例

#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)};
    // 窗口太窄,所以视图无元素。
    static_assert(view2.size() == 0);
}

参阅

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