◐ Shell
clean mode source ↗

std::ranges::zip_view<Views...>::begin - cppreference.com

From cppreference.com

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.

Return value

Notes

ranges::range<const ranges::zip_view<Views...>> is modeled if and only if for every type Vi in Views..., const Vi models range.

Example

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]