constexpr auto size() requires ranges::sized_range<V>; | (1) | (since C++23) |
constexpr auto size() const requires ranges::sized_range<const V>; | (2) | (since C++23) |
Returns the number of elements, which is the smallest integer value that is not less than the quotient of dividing the size of underlying view base_
by the underlying data member n_
, that holds the number passed to the constructor (0
if default constructed). Equivalent to.
(none).
The number of elements.
(C++20) | returns an integer equal to the size of a range (customization point object) |
(C++20) | returns a signed integer equal to the size of a range (customization point object) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/ranges/chunk_view/size