命名空间
变体
操作

std::ranges::stride_view<V>::size

来自 cppreference.com
< cpp‎ | ranges‎ | stride view
 
 
范围库
范围适配器
 
 
constexpr auto size() requires ranges::sized_range<V>;
(自 C++23 起)
constexpr auto size() const requires ranges::sized_range<const V>;
(自 C++23 起)

返回元素数量。

base_ 为底层视图,stride_ 为存储的步长值。等效于

return /*to-unsigned-like*/(/*div-ceil*/(ranges::distance(base_), stride_));

内容

[编辑] 参数

(无)

[编辑] 返回值

元素数量。返回值按表达式计算

(ranges::size(base_) / stride_) + ((ranges::size(base_) % stride_ ? 1 : 0).

[编辑] 示例

#include <forward_list>
#include <ranges>
 
int main()
{
    namespace vs = std::views;
    constexpr static auto v = {1, 2, 3, 4, 5};
    static_assert
    (
        vs::stride(v, 1).size() == 5 and
        vs::stride(v, 2).size() == 3 and
        vs::stride(v, 3).size() == 2 and
        vs::stride(v, 4).size() == 2 and
        vs::stride(v, 5).size() == 1 and
        vs::stride(v, 6).size() == 1
    );
 
    std::forward_list list{v};
//  auto s = vs::stride(list, 2).size(); // Error: not a sized_range
}

[编辑] 另请参阅

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