std::ranges::chunk_by_view<V,Pred>::pred
来自cppreference.com
< cpp | ranges | chunk by view
constexpr const Pred& pred() const; |
(C++23 起) | |
返回对所包含的 Pred 对象的引用,等价于 return *pred_;。
如果 pred_
不包含值,则其行为未定义。
参数
(无)
返回值
对所包含的 Pred 对象的引用。
示例
运行此代码
#include <cassert> #include <concepts> #include <functional> #include <initializer_list> #include <ranges> int main() { const auto v = {1, 1, 2, 2, 1, 1, 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)); }