std::ranges::chunk_view<V>::size
来自 cppreference.com
< cpp | ranges | chunk view
constexpr auto size() requires ranges::sized_range<V>; |
(1) | (自 C++23 起) |
constexpr auto size() const requires ranges::sized_range<const V>; |
(2) | (自 C++23 起) |
返回元素数量,它是小于基础视图 base_
的大小除以基础数据成员 n_
的商的最小整数值(如果默认构造,则为 0)。等同于
return __to_unsigned_like(__div_ceil(ranges::distance(base_), n_));
内容 |
[编辑] 参数
(无)
[编辑] 返回值
元素的数量。
[编辑] 示例
运行此代码
#include <ranges> int main() { constexpr static auto v = {1, 2, 3, 4, 5}; constexpr auto w{ std::ranges::chunk_view(v, 2) }; static_assert(w.size() == (5 / 2 + (5 % 2 ? 1 : 0))); }
[编辑] 另请参阅
(C++20) |
返回等于范围大小的整数 (定制点对象) |
(C++20) |
返回等于范围大小的有符号整数 (定制点对象) |