|
template<typename I , typename S , typename C , typename P = identity> |
auto | ranges::partition_point (I first, S last, C pred, P proj=P{}) -> I requires forward_iterator< I > &&sentinel_for< S, I > &&indirect_unary_predicate< C, projected< I, P >> |
| function template partition_point
|
|
template<typename Rng , typename C , typename P = identity> |
auto | ranges::partition_point (Rng &&rng, C pred, P proj=P{}) -> safe_iterator_t< Rng > requires forward_range< Rng > &&indirect_unary_predicate< C, projected< iterator_t< Rng >, P >> |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
|
|