命名空间
变体
操作

std::ranges::common_view<V>::size

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

返回元素数量。

等同于 return ranges::size(base_);,其中 base_ 是底层视图。

内容

[编辑] 参数

(无)

[编辑] 返回值

元素数量。

[编辑] 示例

#include <ranges>
#include <string_view>
 
int main()
{
    constexpr static auto v1 = {1, 2, 3, 4, 5};
    constexpr auto common1 { v1 | std::views::common };
    static_assert(common1.size() == 5);
 
    constexpr auto take3 { v1 | std::views::reverse | std::views::take(3) };
    constexpr auto common2 { take3 | std::views::common };
    static_assert(common2.size() == 3);
 
    using namespace std::literals;
    constexpr static auto v2 = { "∧"sv, "∨"sv, "∃"sv, "∀"sv };
    static_assert(std::ranges::views::common(v2).size() == 4);
}

[编辑] 另请参见

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