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)); }