std::ranges::chunk_by_view<V,Pred>::pred
From cppreference.com
constexpr const Pred& pred() const; |
(since C++23) | |
Returns a reference to the contained Pred object. Equivalent to return *pred_;.
The behavior is undefined if pred_
does not contain a value.
Parameters
(none)
Return value
A reference to the contained Pred object.
Example
This section is incomplete Reason: no example |