std::ranges::common_view<V>:: size
From cppreference.net
<
cpp
|
ranges
|
common view
C++
Ranges library
|
||||||||||||||||||||||
| Range primitives | |||||||
|
|||||||
| Range concepts | |||||||||||||||||||
|
|||||||||||||||||||
| Range factories | |||||||||
|
|||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||
| Helper items | |||||||||||||||||
|
|
||||||||||||||||
|
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)
|
범위의 크기와 같은 정수를 반환합니다
(customization point object) |
|
(C++20)
|
범위의 크기와 같은 부호 있는 정수를 반환합니다
(customization point object) |