From e066bfae81c627758aec4440e4ca7adda981091c Mon Sep 17 00:00:00 2001 From: Kolya Matteo Date: Fri, 29 Apr 2016 16:12:49 -0400 Subject: [PATCH] Fix documentation to reflect commit 4dac507 --- doc/all_of.qbk | 2 +- doc/any_of.qbk | 2 +- doc/is_partitioned.qbk | 2 +- doc/is_permutation.qbk | 2 +- doc/none_of.qbk | 2 +- doc/partition_point.qbk | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/all_of.qbk b/doc/all_of.qbk index 91b7b36..5b0b8af 100644 --- a/doc/all_of.qbk +++ b/doc/all_of.qbk @@ -73,7 +73,7 @@ All of the variants of `all_of` and `all_of_equal` take their parameters by valu [heading Notes] -* The routine `all_of` is part of the C++11 standard. When compiled using a C++11 implementation, the implementation from the standard library will be used. +* The routine `all_of` is also available as part of the C++11 standard. * `all_of` and `all_of_equal` both return true for empty ranges, no matter what is passed to test against. When there are no items in the sequence to test, they all satisfy the condition to be tested against. diff --git a/doc/any_of.qbk b/doc/any_of.qbk index 61a6603..4a50861 100644 --- a/doc/any_of.qbk +++ b/doc/any_of.qbk @@ -73,7 +73,7 @@ All of the variants of `any_of` and `any_of_equal` take their parameters by valu [heading Notes] -* The routine `any_of` is part of the C++11 standard. When compiled using a C++11 implementation, the implementation from the standard library will be used. +* The routine `any_of` is also available as part of the C++11 standard. * `any_of` and `any_of_equal` both return false for empty ranges, no matter what is passed to test against. diff --git a/doc/is_partitioned.qbk b/doc/is_partitioned.qbk index 16dce6a..7a6c458 100644 --- a/doc/is_partitioned.qbk +++ b/doc/is_partitioned.qbk @@ -55,7 +55,7 @@ Both of the variants of `is_partitioned` take their parameters by value or const [heading Notes] -* The iterator-based version of the routine `is_partitioned` is part of the C++11 standard. When compiled using a C++11 implementation, the implementation from the standard library will be used. +* The iterator-based version of the routine `is_partitioned` is also available as part of the C++11 standard. * `is_partitioned` returns true for empty ranges, no matter what predicate is passed to test against. diff --git a/doc/is_permutation.qbk b/doc/is_permutation.qbk index 267bfab..e8753ba 100644 --- a/doc/is_permutation.qbk +++ b/doc/is_permutation.qbk @@ -71,7 +71,7 @@ All of the variants of `is_permutation` take their parameters by value, and do n [heading Notes] -* The three iterator versions of the routine `is_permutation` are part of the C++11 standard. When compiled using a C++11 implementation, the implementation from the standard library will be used. +* The three iterator versions of the routine `is_permutation` are also available as part of the C++11 standard. * The four iterator versions of the routine `is_permutation` are part of the proposed C++14 standard. When C++14 standard libraries become available, the implementation should be changed to use the implementation from the standard library (if available). diff --git a/doc/none_of.qbk b/doc/none_of.qbk index 3cda5f9..cf0b143 100644 --- a/doc/none_of.qbk +++ b/doc/none_of.qbk @@ -74,7 +74,7 @@ All of the variants of `none_of` and `none_of_equal` take their parameters by va [heading Notes] -* The routine `none_of` is part of the C++11 standard. When compiled using a C++11 implementation, the implementation from the standard library will be used. +* The routine `none_of` is also available aspart of the C++11 standard. * `none_of` and `none_of_equal` both return true for empty ranges, no matter what is passed to test against. diff --git a/doc/partition_point.qbk b/doc/partition_point.qbk index 8d1f76c..813a27b 100644 --- a/doc/partition_point.qbk +++ b/doc/partition_point.qbk @@ -54,7 +54,7 @@ Both of the variants of `partition_point` take their parameters by value or cons [heading Notes] -* The iterator-based version of the routine `partition_point` is part of the C++11 standard. When compiled using a C++11 implementation, the implementation from the standard library will be used. +* The iterator-based version of the routine `partition_point` is also available as part of the C++11 standard. * For empty ranges, the partition point is the end of the range.