std::ranges::zip_view<Views...>::begin - cppreference.com (original) (raw)
| constexpr auto begin() requires (!(/*simple-view*/<Views> && ...)); | (1) | (since C++23) |
|---|---|---|
| constexpr auto begin() const requires (ranges::range<const Views> && ...); | (2) | (since C++23) |
Obtains the beginning iterator of zip_view.
[edit] Return value
[edit] Notes
ranges::range<const ranges::zip_view<Views...>> is modeled if and only if for every type Vi in Views..., const Vi models range.
[edit] Example
[edit] See also
| | returns an iterator or a sentinel to the end (public member function) [edit] | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | | returns an iterator to the beginning of a range(customization point object)[edit] |