deduction guides for std::ranges::chunk_view
From cppreference.com
< cpp | ranges | chunk view
C++
Ranges library
|
Range primitives | |||||||
|
Range concepts | |||||||||||||||||||
|
Range factories | |||||||||
|
Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
Helper items | |||||||||||||||||
|
std::ranges::chunk_view
Member functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
Defined in header <ranges>
|
||
template
<
class R >
chunk_view( R&&, ranges::range_difference_t <R> ) - > chunk_view< views::all_t <R>> ; |
(since C++23) | |
The deduction guide is provided for ranges::chunk_view
only if V models the input_range
. This guide allows deduction from range
Example
This section is incomplete Reason: no example |