std::ranges::common_view<V>::size
Von cppreference.com
< cpp | ranges | common view
| constexpr auto size() requires ranges::sized_range<V>; |
(1) | (seit C++20) |
| constexpr auto size() const requires ranges::sized_range<const V>; |
(2) | (seit C++20) |
Gibt die Anzahl der Elemente zurück. Entspricht return ranges::size(base_);.
[bearbeiten] Rückgabewert
Die Anzahl der Elemente.
[bearbeiten] Beispiel
Führen Sie diesen Code aus
#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); }
[bearbeiten] Siehe auch
| (C++20) |
gibt eine Ganzzahl zurück, die der Größe eines Ranges entspricht (Customization Point Objekt) |
| (C++20) |
gibt eine vorzeichenbehaftete Ganzzahl zurück, die der Größe eines Ranges entspricht (Customization Point Objekt) |