You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/all_of.qbk
+1-1
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ All of the variants of `all_of` and `all_of_equal` take their parameters by valu
73
73
74
74
[heading Notes]
75
75
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.
77
77
78
78
* `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.
Copy file name to clipboardExpand all lines: doc/any_of.qbk
+1-1
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ All of the variants of `any_of` and `any_of_equal` take their parameters by valu
73
73
74
74
[heading Notes]
75
75
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.
77
77
78
78
* `any_of` and `any_of_equal` both return false for empty ranges, no matter what is passed to test against.
Copy file name to clipboardExpand all lines: doc/is_partitioned.qbk
+1-1
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ Both of the variants of `is_partitioned` take their parameters by value or const
55
55
56
56
[heading Notes]
57
57
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.
59
59
60
60
* `is_partitioned` returns true for empty ranges, no matter what predicate is passed to test against.
Copy file name to clipboardExpand all lines: doc/is_permutation.qbk
+1-1
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ All of the variants of `is_permutation` take their parameters by value, and do n
71
71
72
72
[heading Notes]
73
73
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.
75
75
76
76
* 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).
Copy file name to clipboardExpand all lines: doc/none_of.qbk
+1-1
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ All of the variants of `none_of` and `none_of_equal` take their parameters by va
74
74
75
75
[heading Notes]
76
76
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 as part of the C++11 standard.
78
78
79
79
* `none_of` and `none_of_equal` both return true for empty ranges, no matter what is passed to test against.
Copy file name to clipboardExpand all lines: doc/partition_point.qbk
+1-1
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ Both of the variants of `partition_point` take their parameters by value or cons
54
54
55
55
[heading Notes]
56
56
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.
58
58
59
59
* For empty ranges, the partition point is the end of the range.
0 commit comments