Home
last modified time | relevance | path

Searched refs:bi_pred (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/libs/range/doc/reference/adaptors/
Dadjacent_filtered.qbk10 [[Pipe] [`rng | boost::adaptors::adjacent_filtered(bi_pred)`]]
11 [[Function] [`boost::adaptors::adjacent_filter(rng, bi_pred)`]]
14 * [*Precondition:] The `value_type` of the range is convertible to both argument types of `bi_pred
15 * [*Postcondition:] For all adjacent elements `[x,y]` in the returned range, `bi_pred(x,y)` is `tru…
16 * [*Throws:] Whatever the copy constructor of `bi_pred` might throw.
18 * [*Return Type:] `boost::adjacent_filtered_range<decltype(rng), decltype(bi_pred)>`
/third_party/boost/boost/range/adaptor/
Dadjacent_filtered.hpp80 pred_t& bi_pred = *this; in increment() local
87 while (it != m_last && !bi_pred(*prev, *it)) in increment()
97 if (bi_pred(*prev, *it)) in increment()
/third_party/boost/libs/range/doc/reference/
Dadaptors.qbk137 * `bi_pred` is an expression of a type that models `BinaryPredicate`
142 …alue<R>::type` must be implicitly convertible to the type arguments to `pred`, `bi_pred` and `fun`.