Skip to content

Commit 59ec497

Browse files
feat(algorithm): rangesに対する関連項目を追加
1 parent 33bac4e commit 59ec497

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+309
-0
lines changed

reference/algorithm/adjacent_find.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,11 @@ ForwardIterator adjacent_find(ForwardIterator first, ForwardIterator last, Binar
157157
- [ICC](/implementation.md#icc): ??
158158
- [Visual C++](/implementation.md#visual_cpp): ??
159159
160+
161+
## 関連項目
162+
- [`ranges::adjacent_find`](/reference/algorithm/ranges_adjacent_find.md)
163+
164+
160165
## 参照
161166
- [P0202R3 Add Constexpr Modifiers to Functions in `<algorithm>` and `<utility>` Headers](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0202r3.html)
162167
- [P0574R1 Algorithm Complexity Constraints and Parallel Overloads](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0574r1.html)

reference/algorithm/all_of.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ bool all_of(InputIterator first, InputIterator last, Predicate pred) {
8888
## 関連項目
8989
- [`any_of`](/reference/algorithm/any_of.md)
9090
- [`none_of`](/reference/algorithm/none_of.md)
91+
- [`ranges::all_of`](/reference/algorithm/ranges_all_of.md)
9192
9293
9394
## 参照

reference/algorithm/any_of.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ bool any_of(InputIterator first, InputIterator last, Predicate pred) {
8989
## 関連項目
9090
- [`all_of`](/reference/algorithm/all_of.md)
9191
- [`none_of`](/reference/algorithm/none_of.md)
92+
- [`ranges::any_of`](/reference/algorithm/ranges_any_of.md)
9293
9394
9495
## 参照

reference/algorithm/binary_search.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,11 @@ bool binary_search(ForwardIterator first, ForwardIterator last,
163163
- [ICC](/implementation.md#icc): ??
164164
- [Visual C++](/implementation.md#visual_cpp): ??
165165

166+
167+
## 関連項目
168+
- [`ranges::binary_search`](/reference/algorithm/ranges_binary_search.md)
169+
170+
166171
## 参照
167172
- [LWG Issue 787. complexity of `binary_search`](http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#787)
168173
- C++03までの計算量が間違っていたので、C++11で修正。

reference/algorithm/clamp.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ int main()
7878
- [Visual C++](/implementation.md#visual_cpp): ??
7979

8080

81+
## 関連項目
82+
- [`ranges::clamp`](/reference/algorithm/ranges_clamp.md)
83+
84+
8185
## 参照
8286
- [N4536 An algorithm to "clamp" a value between a pair of boundary values](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4536.html)
8387
- [P0025R0 An algorithm to "clamp" a value between a pair of boundary values (revision 1)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/p0025r0.html)

reference/algorithm/copy.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,11 @@ OutputIterator copy(InputIterator first, InputIterator last, OutputIterator resu
102102
- [ICC](/implementation.md#icc): ??
103103
- [Visual C++](/implementation.md#visual_cpp): ??
104104
105+
106+
## 関連項目
107+
- [`ranges::copy`](/reference/algorithm/ranges_copy.md)
108+
109+
105110
## 参照
106111
- [P0202R3 Add Constexpr Modifiers to Functions in `<algorithm>` and `<utility>` Headers](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0202r3.html)
107112
- [P0467R2 Iterator Concerns for Parallel Algorithms](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0467r2.html)

reference/algorithm/copy_backward.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,9 @@ BidirectionalIterator2 copy_backward(BidirectionalIterator1 first,
9595
- [Visual C++](/implementation.md#visual_cpp): ??
9696
9797
98+
## 関連項目
99+
- [`ranges::copy_backward`](/reference/algorithm/ranges_copy_backward.md)
100+
101+
98102
## 参照
99103
- [P0202R3 Add Constexpr Modifiers to Functions in `<algorithm>` and `<utility>` Headers](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0202r3.html)

reference/algorithm/copy_if.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ OutputIterator copy_if(InputIterator first, InputIterator last,
112112
- [Visual C++](/implementation.md#visual_cpp): 2010 [mark verified], 2012 [mark verified], 2013 [mark verified], 2015 [mark verified]
113113
114114
115+
## 関連項目
116+
- [`ranges::copy_if`](/reference/algorithm/ranges_copy_if.md)
117+
118+
115119
## 参照
116120
- [N2569 More STL algorithms](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2569.pdf)
117121
- [N2666 More STL algorithms (revision 2)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2666.pdf)

reference/algorithm/copy_n.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@ OutputIterator copy_n(InputIterator first, Size n, OutputIterator result) {
8989
- [Visual C++](/implementation.md#visual_cpp): 2010 [mark verified], 2012 [mark verified], 2013 [mark verified], 2015 [mark verified]
9090
9191
92+
## 関連項目
93+
- [`ranges::copy_n`](/reference/algorithm/ranges_copy_n.md)
94+
95+
9296
## 参照
9397
- [N2569 More STL algorithms](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2569.pdf)
9498
- [N2666 More STL algorithms (revision 2)](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2666.pdf)

reference/algorithm/count.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,11 @@ typename iterator_traits<InputIterator>::difference_type
141141
- [ICC](/implementation.md#icc): ??
142142
- [Visual C++](/implementation.md#visual_cpp): ??
143143

144+
145+
## 関連項目
146+
- [`ranges::count`](/reference/algorithm/ranges_count.md)
147+
148+
144149
## 参照
145150
- [P0202R3 Add Constexpr Modifiers to Functions in `<algorithm>` and `<utility>` Headers](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0202r3.html)
146151
- [P0467R2 Iterator Concerns for Parallel Algorithms](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0467r2.html)

0 commit comments

Comments
 (0)