deduction guides for std::ranges::chunk_by_view

From cppreference.com
< cpp‎ | ranges‎ | chunk by view
Ranges library
Range adaptors
template < class R, class Pred >
chunk_by_view( R&&, Pred ) - > chunk_by_view< views::all_t <R>, Pred> ;
(since C++23)

The deduction guide is provided for std::ranges::chunk_by_view to allow deduction from range

Example