Skip to content

Commit 6931736

Browse files
committed
Fix broken doc build; create new section
1 parent 12ade33 commit 6931736

File tree

1 file changed

+29
-20
lines changed

1 file changed

+29
-20
lines changed

doc/algorithm.qbk

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,35 @@ Transform each element in a range then combine adjacent elements to create an ou
121121
[endsect:CXX17]
122122

123123

124+
[section:Copy Variations on Copy]
125+
[section:variations_on_copy]
126+
127+
[section:copy_until copy_until ]
128+
[*[^[link header.boost.algorithm.cxx11.copy_if_hpp copy_until] ] ]
129+
Copy all the elements from the start of the input range to the output range until the predicate is satisfied
130+
[endsect:copy_until]
131+
132+
[section:copy_while copy_while ]
133+
[*[^[link header.boost.algorithm.cxx11.copy_if_hpp copy_while] ] ]
134+
Copy all the elements from the start of the input range to the output range while the predicate is satisfied
135+
[endsect:copy_while]
136+
137+
[section:copy_if_until copy_if_until ]
138+
[*[^[link header.boost.algorithm.cxx11.copy_if_hpp copy_if_until ] ]
139+
Copy all elements that satisfy the element predicate from the start of the input range to the output range until the termination predicate is satisfied
140+
141+
[endsect:copy_if_until]
142+
143+
[section:copy_if_while copy_if_while ]
144+
[*[^[link header.boost.algorithm.cxx11.copy_if_hpp copy_if_while ] ]
145+
Copy all elements that satisfy the element predicate from the start of the input range to the output range while the termination predicate is satisfied
146+
147+
[endsect:copy_if_while]
148+
149+
[endsect:variations_on_copy]
150+
[endsect:Copy]
151+
152+
124153
[section:Misc Other Algorithms]
125154

126155
[section:misc_inner_algorithms]
@@ -214,26 +243,6 @@ See below
214243

215244
[include apply_permutation.qbk]
216245

217-
[section:copy_until copy_until ]
218-
[*[^[link header.boost.algorithm.cxx11.copy_if_hpp copy_until] ] ]
219-
Copy all the elements from the start of the input range to the output range until the predicate is satisfied
220-
[endsect:copy_until]
221-
222-
[section:copy_while copy_while ]
223-
[*[^[link header.boost.algorithm.cxx11.copy_if_hpp copy_while] ] ]
224-
Copy all the elements from the start of the input range to the output range while the predicate is satisfied
225-
[endsect:copy_while]
226-
227-
[section:copy_if_until copy_if_until ]
228-
[*[^[link header.boost.algorithm.cxx11.copy_if_hpp copy_if_until ] ]
229-
Copy all elements that satisfy the element predicate from the start of the input range to the output range until the termination predicate is satisfied
230-
[endsect:copy_if_until]
231-
232-
[section:copy_if_while copy_if_while ]
233-
[*[^[link header.boost.algorithm.cxx11.copy_if_hpp copy_if_while ] ]
234-
Copy all elements that satisfy the element predicate from the start of the input range to the output range while the termination predicate is satisfied
235-
[endsect:copy_if_while]
236-
237246
[section:iota_n iota_n ]
238247
[*[^[link boost.algorithm.iota_n iota_n] ] ]
239248
Write a sequence of n increasing values to an output iterator

0 commit comments

Comments
 (0)