|
template<class ForwardIterator1 , class ForwardIterator2 > |
bool | boost::algorithm::is_permutation (ForwardIterator1 first1, ForwardIterator1 last1, ForwardIterator2 first2, ForwardIterator2 last2) |
| Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2. More...
|
|
template<class ForwardIterator1 , class ForwardIterator2 , class BinaryPredicate > |
bool | boost::algorithm::is_permutation (ForwardIterator1 first1, ForwardIterator1 last1, ForwardIterator2 first2, ForwardIterator2 last2, BinaryPredicate pred) |
| Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2. More...
|
|