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_
);。
[編輯] 返回值
元素數量。
[編輯] 示例
執行此程式碼
#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); }
[編輯] 參閱
(C++20) |
返回等於範圍大小的整數 (定製點物件) |
(C++20) |
返回等於範圍大小的有符號整數 (定製點物件) |