Added documentation for 'is_permutation'

[SVN r84538]
This commit is contained in:
Marshall Clow
2013-05-28 19:36:04 +00:00
parent 3e5f571230
commit 44d65cb4ae
3 changed files with 89 additions and 1 deletions

View File

@ -18,7 +18,7 @@ The routine `is_partitioned` takes a sequence and a predicate. It returns true i
[heading interface]
The function `is_partitioned` returns true the items in the sequence are separated according to their ability to satisfy the predicate. There are two versions; one takes two iterators, and the other takes a range.
The function `is_partitioned` returns true if the items in the sequence are separated according to their ability to satisfy the predicate. There are two versions; one takes two iterators, and the other takes a range.
``
template<typename InputIterator, typename Predicate>