Skip to content

Commit e066bfa

Browse files
committed
Fix documentation to reflect commit 4dac507
1 parent f06dc42 commit e066bfa

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

doc/all_of.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ All of the variants of `all_of` and `all_of_equal` take their parameters by valu
7373

7474
[heading Notes]
7575

76-
* 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.
76+
* The routine `all_of` is also available as part of the C++11 standard.
7777

7878
* `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.
7979

doc/any_of.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ All of the variants of `any_of` and `any_of_equal` take their parameters by valu
7373

7474
[heading Notes]
7575

76-
* 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.
76+
* The routine `any_of` is also available as part of the C++11 standard.
7777

7878
* `any_of` and `any_of_equal` both return false for empty ranges, no matter what is passed to test against.
7979

doc/is_partitioned.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Both of the variants of `is_partitioned` take their parameters by value or const
5555

5656
[heading Notes]
5757

58-
* 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.
58+
* The iterator-based version of the routine `is_partitioned` is also available as part of the C++11 standard.
5959

6060
* `is_partitioned` returns true for empty ranges, no matter what predicate is passed to test against.
6161

doc/is_permutation.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ All of the variants of `is_permutation` take their parameters by value, and do n
7171

7272
[heading Notes]
7373

74-
* 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.
74+
* The three iterator versions of the routine `is_permutation` are also available as part of the C++11 standard.
7575

7676
* 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).
7777

doc/none_of.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ All of the variants of `none_of` and `none_of_equal` take their parameters by va
7474

7575
[heading Notes]
7676

77-
* 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.
77+
* The routine `none_of` is also available aspart of the C++11 standard.
7878

7979
* `none_of` and `none_of_equal` both return true for empty ranges, no matter what is passed to test against.
8080

doc/partition_point.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Both of the variants of `partition_point` take their parameters by value or cons
5454

5555
[heading Notes]
5656

57-
* 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.
57+
* The iterator-based version of the routine `partition_point` is also available as part of the C++11 standard.
5858

5959
* For empty ranges, the partition point is the end of the range.
6060

0 commit comments

Comments
 (0)