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