命名空间
变体
操作

std::ranges::cartesian_product_view<First, Vs...>::size

来自 cppreference.com
 
 
范围库
范围适配器
 
 
constexpr /* see description */ size()
    requires /*cartesian-product-is-sized*/<First, Vs...>;
(1) (自 C++23 起)
constexpr /* see description */ size() const
    requires /*cartesian-product-is-sized*/<const First, const Vs...>;
(2) (自 C++23 起)

返回元素数量。返回类型是一个实现定义的 /*unsigned-integer-like*/ 类型 U

bases_ 为底层视图元组,而 prodbases_ 中所有范围大小的乘积。

1,2) 返回 prod。如果 prod 不能用返回类型 U 表示,则行为未定义。

等效于

return [&]<std::size_t... Is>(std::index_sequence<Is...>)
{
    auto prod = static_cast<U>(1);
    prod = (static_cast<U>(ranges::size(std::get<Is>(bases_))) * ...);
    return prod;
}
(std::make_index_sequence<1U + sizeof...(Vs)>{});

内容

[编辑] 参数

(无)

[编辑] 返回值

元素的数量,即所有底层范围大小的乘积。

[编辑] 注释

返回类型是最小的 /*unsigned-integer-like*/ 类型,该类型足够宽以存储所有底层范围的最大大小的乘积,如果存在这样的类型。

[编辑] 示例

#include <ranges>
 
int main()
{
    constexpr static auto w = {1};
    constexpr static auto x = {2, 3};
    constexpr static auto y = {4, 5, 6};
    constexpr static auto z = {7, 8, 9, 10, 11, 12, 13};
    constexpr auto v = std::ranges::cartesian_product_view(w, x, y, z);
    static_assert(v.size() == w.size() * x.size() * y.size() * z.size() and v.size() == 42);
}

[编辑] 参见

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