std::ranges::chunk_by_view<V,Pred>::pred
From cppreference.com
< cpp | ranges | chunk by view
C++
Ranges library
| ||||||||||||||||||||||
| Range primitives | |||||||
| |||||||
| Range concepts | |||||||||||||||||||
| |||||||||||||||||||
| Range factories | |||||||||
| |||||||||
| Range adaptors | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||
| Helper items | |||||||||||||||||
| |||||||||||||||||
std::ranges::chunk_by_view
| Member functions | ||||
chunk_by_view::pred | ||||
| Deduction guides | ||||
| Iterator | ||||
| 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.
[edit] Parameters
(none)
[edit] Return value
A reference to the contained Pred object.
[edit] Example
Run this code
#include <cassert> #include <concepts> #include <functional> #include <initializer_list> #include <ranges> int main() { const auto v = {1, 1, 2, 1}; auto chunks = v | std::views::chunk_by(std::equal_to{}); auto pred = chunks.pred(); static_assert(std::same_as<decltype(pred), std::equal_to<>>); assert(pred(v.begin()[0], 1); }