Lines Matching full:it
31 void f(Iterator it, Range in, Iterator out, std::size_t n, Value const& val, std::initializer_list<Value> ilist) {
34 (void)func(it, it, pred);
36 (void)func(it, it, pred, projection);
42 (void)func(it, it, it, it, pred);
44 (void)func(it, it, it, it, pred, projection);
68 (void)std::ranges::lower_bound(it, it, val, pred2);
70 (void)std::ranges::lower_bound(it, it, val, pred2, projection);
75 (void)std::ranges::upper_bound(it, it, val, pred2);
77 (void)std::ranges::upper_bound(it, it, val, pred2, projection);
82 (void)std::ranges::equal_range(it, it, val, pred2);
84 (void)std::ranges::equal_range(it, it, val, pred2, projection);
89 (void)std::ranges::binary_search(it, it, val, pred2);
91 (void)std::ranges::binary_search(it, it, val, pred2, projection);
129 (void)std::ranges::search_n(it, it, n, val, pred2);
131 (void)std::ranges::search_n(it, it, n, val, pred2, projection);
150 (void)std::ranges::copy_if(it, it, out, pred1);
152 (void)std::ranges::copy_if(it, it, out, pred1, projection);
156 (void)std::ranges::remove_copy_if(it, it, out, pred1);
158 (void)std::ranges::remove_copy_if(it, it, out, pred1, projection);
163 (void)std::ranges::remove_copy(it, it, out, val);
165 (void)std::ranges::remove_copy(it, it, out, val, projection);
170 (void)std::ranges::replace(it, it, val, val);
172 (void)std::ranges::replace(it, it, val, val, projection);
177 (void)std::ranges::replace_if(it, it, pred1, val);
179 (void)std::ranges::replace_if(it, it, pred1, val, projection);
184 (void)std::ranges::replace_copy_if(it, it, out, pred1, val);
186 (void)std::ranges::replace_copy_if(it, it, out, pred1, val, projection);
191 (void)std::ranges::replace_copy(it, it, out, val, val);
193 (void)std::ranges::replace_copy(it, it, out, val, val, projection);
198 (void)std::ranges::unique_copy(it, it, out, pred2);
200 (void)std::ranges::unique_copy(it, it, out, pred2, projection);
205 (void)std::ranges::partition_copy(it, it, out, out, pred1);
207 (void)std::ranges::partition_copy(it, it, out, out, pred1, projection);
216 (void)std::ranges::merge(it, it, it, it, out, pred2);
218 (void)std::ranges::merge(it, it, it, it, out, pred2, projection, projection);
223 (void)std::ranges::set_difference(it, it, it, it, out, pred2);
225 (void)std::ranges::set_difference(it, it, it, it, out, pred2, projection, projection);
230 (void)std::ranges::set_intersection(it, it, it, it, out, pred2);
232 (void)std::ranges::set_intersection(it, it, it, it, out, pred2, projection, projection);
237 (void)std::ranges::set_symmetric_difference(it, it, it, it, out, pred2);
239 (void)std::ranges::set_symmetric_difference(it, it, it, it, out, pred2, projection, projection);
244 (void)std::ranges::set_union(it, it, it, it, out, pred2);
246 (void)std::ranges::set_union(it, it, it, it, out, pred2, projection, projection);
252 (void)std::ranges::remove(it, it, val);
253 (void)std::ranges::remove(it, it, val, projection);
264 (void)std::ranges::partial_sort(it, it, it, pred2);
265 (void)std::ranges::partial_sort(in, it, pred2);
266 (void)std::ranges::partial_sort(it, it, it, pred2, projection);
267 (void)std::ranges::partial_sort(in, it, pred2, projection);
271 (void)std::ranges::nth_element(it, it, it, pred2);
272 (void)std::ranges::nth_element(in, it, pred2);
273 (void)std::ranges::nth_element(it, it, it, pred2, projection);
274 (void)std::ranges::nth_element(in, it, pred2, projection);
278 (void)std::ranges::inplace_merge(it, it, it, pred2);
279 (void)std::ranges::inplace_merge(in, it, pred2);
280 (void)std::ranges::inplace_merge(it, it, it, pred2, projection);
281 (void)std::ranges::inplace_merge(in, it, pred2, projection);