diff -r 5ba2c02130b8 -r b82520d50289 is_permutation.hpp
|
a
|
b
|
|
| 46 | 46 | |
| 47 | 47 | |
| 48 | 48 | /// \fn is_permutation ( ForwardIterator1 first, ForwardIterator1 last, ForwardIterator2 first2, BinaryPredicate p ) |
| 49 | | /// \brief Tests to see if a the sequence [first,last) is a permutation of the sequence starting at first2 |
| | 49 | /// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2 |
| 50 | 50 | /// |
| 51 | 51 | /// \param first The start of the input sequence |
| 52 | 52 | /// \param last One past the end of the input sequence |
| … |
… |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | /// \fn is_permutation ( ForwardIterator1 first, ForwardIterator1 last, ForwardIterator2 first2 ) |
| 91 | | /// \brief Tests to see if a the sequence [first,last) is a permutation of the sequence starting at first2 |
| | 91 | /// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2 |
| 92 | 92 | /// |
| 93 | 93 | /// \param first The start of the input sequence |
| 94 | 94 | /// \param last One past the end of the input sequence |
| … |
… |
|
| 108 | 108 | #endif |
| 109 | 109 | |
| 110 | 110 | /// \fn is_permutation ( const Range &r, ForwardIterator first2 ) |
| 111 | | /// \brief Tests to see if a the sequence [first,last) is a permutation of the sequence starting at first2 |
| | 111 | /// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2 |
| 112 | 112 | /// |
| 113 | 113 | /// \param r The input range |
| 114 | 114 | /// \param first2 The start of the second sequence |
| … |
… |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | /// \fn is_permutation ( const Range &r, ForwardIterator first2, BinaryPredicate pred ) |
| 122 | | /// \brief Tests to see if a the sequence [first,last) is a permutation of the sequence starting at first2 |
| | 122 | /// \brief Tests to see if the sequence [first,last) is a permutation of the sequence starting at first2 |
| 123 | 123 | /// |
| 124 | 124 | /// \param r The input range |
| 125 | 125 | /// \param first2 The start of the second sequence |