<<< Iterator types and functionality | Index | std::sort example >>> |
Sort the range between two iterators
Iterators must be random access
Items pointed to must have operator<
template< typename RandomIterT > void sort( RandomIterT first, RandomIterT last ); template< typename RandomIterT, typename PredicateT > void sort( RandomIterT first, RandomIterT last, PredicateT pr );
<<< Iterator types and functionality | Index | std::sort example >>> |