Range-v3
Range algorithms, views, and actions for the Standard Library
ranges::next_permutation_fn Struct Reference

Public Member Functions

template<typename I , typename S , typename C = less, typename P = identity>
auto operator() (I begin, S end_, C pred=C{}, P proj=P{}) const -> bool requires bidirectional_iterator< I > &&sentinel_for< S, I > &&sortable< I, C, P >
 
template<typename Rng , typename C = less, typename P = identity>
auto operator() (Rng &&rng, C pred=C{}, P proj=P{}) const -> bool requires bidirectional_range< Rng > &&sortable< iterator_t< Rng >, C, P >