deduction guides for std::ranges::enumerate_view - cppreference.com

From cppreference.com

template<classR>enumerate_view(R&&)->enumerate_view<views::all_t<R>>;(since C++23)The

deduction guide

is provided for std::ranges::enumerate_view to allow deduction from

range

.

Example