blob: 6af8c09799e56f223ad3eeca246d83ab07063a19 [file] [log] [blame]
Hsin-Yu Chaoedc34c82018-08-09 17:53:05 +08001// Copyright 2017 The Abseil Authors.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14//
15// -----------------------------------------------------------------------------
16// File: container.h
17// -----------------------------------------------------------------------------
18//
19// This header file provides Container-based versions of algorithmic functions
20// within the C++ standard library. The following standard library sets of
21// functions are covered within this file:
22//
23// * Algorithmic <iterator> functions
24// * Algorithmic <numeric> functions
25// * <algorithm> functions
26//
27// The standard library functions operate on iterator ranges; the functions
28// within this API operate on containers, though many return iterator ranges.
29//
30// All functions within this API are named with a `c_` prefix. Calls such as
31// `absl::c_xx(container, ...) are equivalent to std:: functions such as
32// `std::xx(std::begin(cont), std::end(cont), ...)`. Functions that act on
33// iterators but not conceptually on iterator ranges (e.g. `std::iter_swap`)
34// have no equivalent here.
35//
36// For template parameter and variable naming, `C` indicates the container type
37// to which the function is applied, `Pred` indicates the predicate object type
38// to be used by the function and `T` indicates the applicable element type.
39//
40
41#ifndef ABSL_ALGORITHM_CONTAINER_H_
42#define ABSL_ALGORITHM_CONTAINER_H_
43
44#include <algorithm>
45#include <cassert>
46#include <iterator>
47#include <numeric>
48#include <type_traits>
49#include <utility>
50#include <vector>
51
52#include "absl/algorithm/algorithm.h"
53#include "absl/base/macros.h"
54#include "absl/meta/type_traits.h"
55
56namespace absl {
57
58namespace container_algorithm_internal {
59
60// NOTE: it is important to defer to ADL lookup for building with C++ modules,
61// especially for headers like <valarray> which are not visible from this file
62// but specialize std::begin and std::end.
63using std::begin;
64using std::end;
65
66// The type of the iterator given by begin(c) (possibly std::begin(c)).
67// ContainerIter<const vector<T>> gives vector<T>::const_iterator,
68// while ContainerIter<vector<T>> gives vector<T>::iterator.
69template <typename C>
70using ContainerIter = decltype(begin(std::declval<C&>()));
71
72// An MSVC bug involving template parameter substitution requires us to use
73// decltype() here instead of just std::pair.
74template <typename C1, typename C2>
75using ContainerIterPairType =
76 decltype(std::make_pair(ContainerIter<C1>(), ContainerIter<C2>()));
77
78template <typename C>
79using ContainerDifferenceType =
80 decltype(std::distance(std::declval<ContainerIter<C>>(),
81 std::declval<ContainerIter<C>>()));
82
83template <typename C>
84using ContainerPointerType =
85 typename std::iterator_traits<ContainerIter<C>>::pointer;
86
87// container_algorithm_internal::c_begin and
88// container_algorithm_internal::c_end are abbreviations for proper ADL
89// lookup of std::begin and std::end, i.e.
90// using std::begin;
91// using std::end;
92// std::foo(begin(c), end(c);
93// becomes
94// std::foo(container_algorithm_internal::begin(c),
95// container_algorithm_internal::end(c));
96// These are meant for internal use only.
97
98template <typename C>
99ContainerIter<C> c_begin(C& c) { return begin(c); }
100
101template <typename C>
102ContainerIter<C> c_end(C& c) { return end(c); }
103
104} // namespace container_algorithm_internal
105
106// PUBLIC API
107
108//------------------------------------------------------------------------------
109// Abseil algorithm.h functions
110//------------------------------------------------------------------------------
111
112// c_linear_search()
113//
114// Container-based version of absl::linear_search() for performing a linear
115// search within a container.
116template <typename C, typename EqualityComparable>
117bool c_linear_search(const C& c, EqualityComparable&& value) {
118 return linear_search(container_algorithm_internal::c_begin(c),
119 container_algorithm_internal::c_end(c),
120 std::forward<EqualityComparable>(value));
121}
122
123//------------------------------------------------------------------------------
124// <iterator> algorithms
125//------------------------------------------------------------------------------
126
127// c_distance()
128//
129// Container-based version of the <iterator> `std::distance()` function to
130// return the number of elements within a container.
131template <typename C>
132container_algorithm_internal::ContainerDifferenceType<const C> c_distance(
133 const C& c) {
134 return std::distance(container_algorithm_internal::c_begin(c),
135 container_algorithm_internal::c_end(c));
136}
137
138//------------------------------------------------------------------------------
139// <algorithm> Non-modifying sequence operations
140//------------------------------------------------------------------------------
141
142// c_all_of()
143//
144// Container-based version of the <algorithm> `std::all_of()` function to
145// test a condition on all elements within a container.
146template <typename C, typename Pred>
147bool c_all_of(const C& c, Pred&& pred) {
148 return std::all_of(container_algorithm_internal::c_begin(c),
149 container_algorithm_internal::c_end(c),
150 std::forward<Pred>(pred));
151}
152
153// c_any_of()
154//
155// Container-based version of the <algorithm> `std::any_of()` function to
156// test if any element in a container fulfills a condition.
157template <typename C, typename Pred>
158bool c_any_of(const C& c, Pred&& pred) {
159 return std::any_of(container_algorithm_internal::c_begin(c),
160 container_algorithm_internal::c_end(c),
161 std::forward<Pred>(pred));
162}
163
164// c_none_of()
165//
166// Container-based version of the <algorithm> `std::none_of()` function to
167// test if no elements in a container fulfil a condition.
168template <typename C, typename Pred>
169bool c_none_of(const C& c, Pred&& pred) {
170 return std::none_of(container_algorithm_internal::c_begin(c),
171 container_algorithm_internal::c_end(c),
172 std::forward<Pred>(pred));
173}
174
175// c_for_each()
176//
177// Container-based version of the <algorithm> `std::for_each()` function to
178// apply a function to a container's elements.
179template <typename C, typename Function>
180decay_t<Function> c_for_each(C&& c, Function&& f) {
181 return std::for_each(container_algorithm_internal::c_begin(c),
182 container_algorithm_internal::c_end(c),
183 std::forward<Function>(f));
184}
185
186// c_find()
187//
188// Container-based version of the <algorithm> `std::find()` function to find
189// the first element containing the passed value within a container value.
190template <typename C, typename T>
191container_algorithm_internal::ContainerIter<C> c_find(C& c, T&& value) {
192 return std::find(container_algorithm_internal::c_begin(c),
193 container_algorithm_internal::c_end(c),
194 std::forward<T>(value));
195}
196
197// c_find_if()
198//
199// Container-based version of the <algorithm> `std::find_if()` function to find
200// the first element in a container matching the given condition.
201template <typename C, typename Pred>
202container_algorithm_internal::ContainerIter<C> c_find_if(C& c, Pred&& pred) {
203 return std::find_if(container_algorithm_internal::c_begin(c),
204 container_algorithm_internal::c_end(c),
205 std::forward<Pred>(pred));
206}
207
208// c_find_if_not()
209//
210// Container-based version of the <algorithm> `std::find_if_not()` function to
211// find the first element in a container not matching the given condition.
212template <typename C, typename Pred>
213container_algorithm_internal::ContainerIter<C> c_find_if_not(C& c,
214 Pred&& pred) {
215 return std::find_if_not(container_algorithm_internal::c_begin(c),
216 container_algorithm_internal::c_end(c),
217 std::forward<Pred>(pred));
218}
219
220// c_find_end()
221//
222// Container-based version of the <algorithm> `std::find_end()` function to
223// find the last subsequence within a container.
224template <typename Sequence1, typename Sequence2>
225container_algorithm_internal::ContainerIter<Sequence1> c_find_end(
226 Sequence1& sequence, Sequence2& subsequence) {
227 return std::find_end(container_algorithm_internal::c_begin(sequence),
228 container_algorithm_internal::c_end(sequence),
229 container_algorithm_internal::c_begin(subsequence),
230 container_algorithm_internal::c_end(subsequence));
231}
232
233// Overload of c_find_end() for using a predicate evaluation other than `==` as
234// the function's test condition.
235template <typename Sequence1, typename Sequence2, typename BinaryPredicate>
236container_algorithm_internal::ContainerIter<Sequence1> c_find_end(
237 Sequence1& sequence, Sequence2& subsequence, BinaryPredicate&& pred) {
238 return std::find_end(container_algorithm_internal::c_begin(sequence),
239 container_algorithm_internal::c_end(sequence),
240 container_algorithm_internal::c_begin(subsequence),
241 container_algorithm_internal::c_end(subsequence),
242 std::forward<BinaryPredicate>(pred));
243}
244
245// c_find_first_of()
246//
247// Container-based version of the <algorithm> `std::find_first_of()` function to
248// find the first elements in an ordered set within a container.
249template <typename C1, typename C2>
250container_algorithm_internal::ContainerIter<C1> c_find_first_of(C1& container,
251 C2& options) {
252 return std::find_first_of(container_algorithm_internal::c_begin(container),
253 container_algorithm_internal::c_end(container),
254 container_algorithm_internal::c_begin(options),
255 container_algorithm_internal::c_end(options));
256}
257
258// Overload of c_find_first_of() for using a predicate evaluation other than
259// `==` as the function's test condition.
260template <typename C1, typename C2, typename BinaryPredicate>
261container_algorithm_internal::ContainerIter<C1> c_find_first_of(
262 C1& container, C2& options, BinaryPredicate&& pred) {
263 return std::find_first_of(container_algorithm_internal::c_begin(container),
264 container_algorithm_internal::c_end(container),
265 container_algorithm_internal::c_begin(options),
266 container_algorithm_internal::c_end(options),
267 std::forward<BinaryPredicate>(pred));
268}
269
270// c_adjacent_find()
271//
272// Container-based version of the <algorithm> `std::adjacent_find()` function to
273// find equal adjacent elements within a container.
274template <typename Sequence>
275container_algorithm_internal::ContainerIter<Sequence> c_adjacent_find(
276 Sequence& sequence) {
277 return std::adjacent_find(container_algorithm_internal::c_begin(sequence),
278 container_algorithm_internal::c_end(sequence));
279}
280
281// Overload of c_adjacent_find() for using a predicate evaluation other than
282// `==` as the function's test condition.
283template <typename Sequence, typename BinaryPredicate>
284container_algorithm_internal::ContainerIter<Sequence> c_adjacent_find(
285 Sequence& sequence, BinaryPredicate&& pred) {
286 return std::adjacent_find(container_algorithm_internal::c_begin(sequence),
287 container_algorithm_internal::c_end(sequence),
288 std::forward<BinaryPredicate>(pred));
289}
290
291// c_count()
292//
293// Container-based version of the <algorithm> `std::count()` function to count
294// values that match within a container.
295template <typename C, typename T>
296container_algorithm_internal::ContainerDifferenceType<const C> c_count(
297 const C& c, T&& value) {
298 return std::count(container_algorithm_internal::c_begin(c),
299 container_algorithm_internal::c_end(c),
300 std::forward<T>(value));
301}
302
303// c_count_if()
304//
305// Container-based version of the <algorithm> `std::count_if()` function to
306// count values matching a condition within a container.
307template <typename C, typename Pred>
308container_algorithm_internal::ContainerDifferenceType<const C> c_count_if(
309 const C& c, Pred&& pred) {
310 return std::count_if(container_algorithm_internal::c_begin(c),
311 container_algorithm_internal::c_end(c),
312 std::forward<Pred>(pred));
313}
314
315// c_mismatch()
316//
Hsin-Yu Chaoedc7e2a2018-08-24 14:02:41 +0800317// Container-based version of the <algorithm> `std::mismatch()` function to
Hsin-Yu Chaoedc34c82018-08-09 17:53:05 +0800318// return the first element where two ordered containers differ.
319template <typename C1, typename C2>
320container_algorithm_internal::ContainerIterPairType<C1, C2>
321c_mismatch(C1& c1, C2& c2) {
322 return std::mismatch(container_algorithm_internal::c_begin(c1),
323 container_algorithm_internal::c_end(c1),
324 container_algorithm_internal::c_begin(c2));
325}
326
327// Overload of c_mismatch() for using a predicate evaluation other than `==` as
328// the function's test condition.
329template <typename C1, typename C2, typename BinaryPredicate>
330container_algorithm_internal::ContainerIterPairType<C1, C2>
331c_mismatch(C1& c1, C2& c2, BinaryPredicate&& pred) {
332 return std::mismatch(container_algorithm_internal::c_begin(c1),
333 container_algorithm_internal::c_end(c1),
334 container_algorithm_internal::c_begin(c2),
335 std::forward<BinaryPredicate>(pred));
336}
337
338// c_equal()
339//
340// Container-based version of the <algorithm> `std::equal()` function to
341// test whether two containers are equal.
342//
343// NOTE: the semantics of c_equal() are slightly different than those of
344// equal(): while the latter iterates over the second container only up to the
345// size of the first container, c_equal() also checks whether the container
346// sizes are equal. This better matches expectations about c_equal() based on
347// its signature.
348//
349// Example:
350// vector v1 = <1, 2, 3>;
351// vector v2 = <1, 2, 3, 4>;
352// equal(std::begin(v1), std::end(v1), std::begin(v2)) returns true
353// c_equal(v1, v2) returns false
354
355template <typename C1, typename C2>
356bool c_equal(const C1& c1, const C2& c2) {
357 return ((c1.size() == c2.size()) &&
358 std::equal(container_algorithm_internal::c_begin(c1),
359 container_algorithm_internal::c_end(c1),
360 container_algorithm_internal::c_begin(c2)));
361}
362
363// Overload of c_equal() for using a predicate evaluation other than `==` as
364// the function's test condition.
365template <typename C1, typename C2, typename BinaryPredicate>
366bool c_equal(const C1& c1, const C2& c2, BinaryPredicate&& pred) {
367 return ((c1.size() == c2.size()) &&
368 std::equal(container_algorithm_internal::c_begin(c1),
369 container_algorithm_internal::c_end(c1),
370 container_algorithm_internal::c_begin(c2),
371 std::forward<BinaryPredicate>(pred)));
372}
373
374// c_is_permutation()
375//
376// Container-based version of the <algorithm> `std::is_permutation()` function
377// to test whether a container is a permutation of another.
378template <typename C1, typename C2>
379bool c_is_permutation(const C1& c1, const C2& c2) {
380 using std::begin;
381 using std::end;
382 return c1.size() == c2.size() &&
383 std::is_permutation(begin(c1), end(c1), begin(c2));
384}
385
386// Overload of c_is_permutation() for using a predicate evaluation other than
387// `==` as the function's test condition.
388template <typename C1, typename C2, typename BinaryPredicate>
389bool c_is_permutation(const C1& c1, const C2& c2, BinaryPredicate&& pred) {
390 using std::begin;
391 using std::end;
392 return c1.size() == c2.size() &&
393 std::is_permutation(begin(c1), end(c1), begin(c2),
394 std::forward<BinaryPredicate>(pred));
395}
396
397// c_search()
398//
399// Container-based version of the <algorithm> `std::search()` function to search
400// a container for a subsequence.
401template <typename Sequence1, typename Sequence2>
402container_algorithm_internal::ContainerIter<Sequence1> c_search(
403 Sequence1& sequence, Sequence2& subsequence) {
404 return std::search(container_algorithm_internal::c_begin(sequence),
405 container_algorithm_internal::c_end(sequence),
406 container_algorithm_internal::c_begin(subsequence),
407 container_algorithm_internal::c_end(subsequence));
408}
409
410// Overload of c_search() for using a predicate evaluation other than
411// `==` as the function's test condition.
412template <typename Sequence1, typename Sequence2, typename BinaryPredicate>
413container_algorithm_internal::ContainerIter<Sequence1> c_search(
414 Sequence1& sequence, Sequence2& subsequence, BinaryPredicate&& pred) {
415 return std::search(container_algorithm_internal::c_begin(sequence),
416 container_algorithm_internal::c_end(sequence),
417 container_algorithm_internal::c_begin(subsequence),
418 container_algorithm_internal::c_end(subsequence),
419 std::forward<BinaryPredicate>(pred));
420}
421
422// c_search_n()
423//
424// Container-based version of the <algorithm> `std::search_n()` function to
425// search a container for the first sequence of N elements.
426template <typename Sequence, typename Size, typename T>
427container_algorithm_internal::ContainerIter<Sequence> c_search_n(
428 Sequence& sequence, Size count, T&& value) {
429 return std::search_n(container_algorithm_internal::c_begin(sequence),
430 container_algorithm_internal::c_end(sequence), count,
431 std::forward<T>(value));
432}
433
434// Overload of c_search_n() for using a predicate evaluation other than
435// `==` as the function's test condition.
436template <typename Sequence, typename Size, typename T,
437 typename BinaryPredicate>
438container_algorithm_internal::ContainerIter<Sequence> c_search_n(
439 Sequence& sequence, Size count, T&& value, BinaryPredicate&& pred) {
440 return std::search_n(container_algorithm_internal::c_begin(sequence),
441 container_algorithm_internal::c_end(sequence), count,
442 std::forward<T>(value),
443 std::forward<BinaryPredicate>(pred));
444}
445
446//------------------------------------------------------------------------------
447// <algorithm> Modifying sequence operations
448//------------------------------------------------------------------------------
449
450// c_copy()
451//
452// Container-based version of the <algorithm> `std::copy()` function to copy a
453// container's elements into an iterator.
454template <typename InputSequence, typename OutputIterator>
455OutputIterator c_copy(const InputSequence& input, OutputIterator output) {
456 return std::copy(container_algorithm_internal::c_begin(input),
457 container_algorithm_internal::c_end(input), output);
458}
459
460// c_copy_n()
461//
462// Container-based version of the <algorithm> `std::copy_n()` function to copy a
463// container's first N elements into an iterator.
464template <typename C, typename Size, typename OutputIterator>
465OutputIterator c_copy_n(const C& input, Size n, OutputIterator output) {
466 return std::copy_n(container_algorithm_internal::c_begin(input), n, output);
467}
468
469// c_copy_if()
470//
471// Container-based version of the <algorithm> `std::copy_if()` function to copy
472// a container's elements satisfying some condition into an iterator.
473template <typename InputSequence, typename OutputIterator, typename Pred>
474OutputIterator c_copy_if(const InputSequence& input, OutputIterator output,
475 Pred&& pred) {
476 return std::copy_if(container_algorithm_internal::c_begin(input),
477 container_algorithm_internal::c_end(input), output,
478 std::forward<Pred>(pred));
479}
480
481// c_copy_backward()
482//
483// Container-based version of the <algorithm> `std::copy_backward()` function to
484// copy a container's elements in reverse order into an iterator.
485template <typename C, typename BidirectionalIterator>
486BidirectionalIterator c_copy_backward(const C& src,
487 BidirectionalIterator dest) {
488 return std::copy_backward(container_algorithm_internal::c_begin(src),
489 container_algorithm_internal::c_end(src), dest);
490}
491
492// c_move()
493//
494// Container-based version of the <algorithm> `std::move()` function to move
495// a container's elements into an iterator.
496template <typename C, typename OutputIterator>
497OutputIterator c_move(C& src, OutputIterator dest) {
498 return std::move(container_algorithm_internal::c_begin(src),
499 container_algorithm_internal::c_end(src), dest);
500}
501
502// c_swap_ranges()
503//
504// Container-based version of the <algorithm> `std::swap_ranges()` function to
505// swap a container's elements with another container's elements.
506template <typename C1, typename C2>
507container_algorithm_internal::ContainerIter<C2> c_swap_ranges(C1& c1, C2& c2) {
508 return std::swap_ranges(container_algorithm_internal::c_begin(c1),
509 container_algorithm_internal::c_end(c1),
510 container_algorithm_internal::c_begin(c2));
511}
512
513// c_transform()
514//
515// Container-based version of the <algorithm> `std::transform()` function to
516// transform a container's elements using the unary operation, storing the
517// result in an iterator pointing to the last transformed element in the output
518// range.
519template <typename InputSequence, typename OutputIterator, typename UnaryOp>
520OutputIterator c_transform(const InputSequence& input, OutputIterator output,
521 UnaryOp&& unary_op) {
522 return std::transform(container_algorithm_internal::c_begin(input),
523 container_algorithm_internal::c_end(input), output,
524 std::forward<UnaryOp>(unary_op));
525}
526
527// Overload of c_transform() for performing a transformation using a binary
528// predicate.
529template <typename InputSequence1, typename InputSequence2,
530 typename OutputIterator, typename BinaryOp>
531OutputIterator c_transform(const InputSequence1& input1,
532 const InputSequence2& input2, OutputIterator output,
533 BinaryOp&& binary_op) {
534 return std::transform(container_algorithm_internal::c_begin(input1),
535 container_algorithm_internal::c_end(input1),
536 container_algorithm_internal::c_begin(input2), output,
537 std::forward<BinaryOp>(binary_op));
538}
539
540// c_replace()
541//
542// Container-based version of the <algorithm> `std::replace()` function to
543// replace a container's elements of some value with a new value. The container
544// is modified in place.
545template <typename Sequence, typename T>
546void c_replace(Sequence& sequence, const T& old_value, const T& new_value) {
547 std::replace(container_algorithm_internal::c_begin(sequence),
548 container_algorithm_internal::c_end(sequence), old_value,
549 new_value);
550}
551
552// c_replace_if()
553//
554// Container-based version of the <algorithm> `std::replace_if()` function to
555// replace a container's elements of some value with a new value based on some
556// condition. The container is modified in place.
557template <typename C, typename Pred, typename T>
558void c_replace_if(C& c, Pred&& pred, T&& new_value) {
559 std::replace_if(container_algorithm_internal::c_begin(c),
560 container_algorithm_internal::c_end(c),
561 std::forward<Pred>(pred), std::forward<T>(new_value));
562}
563
564// c_replace_copy()
565//
566// Container-based version of the <algorithm> `std::replace_copy()` function to
567// replace a container's elements of some value with a new value and return the
568// results within an iterator.
569template <typename C, typename OutputIterator, typename T>
570OutputIterator c_replace_copy(const C& c, OutputIterator result, T&& old_value,
571 T&& new_value) {
572 return std::replace_copy(container_algorithm_internal::c_begin(c),
573 container_algorithm_internal::c_end(c), result,
574 std::forward<T>(old_value),
575 std::forward<T>(new_value));
576}
577
578// c_replace_copy_if()
579//
580// Container-based version of the <algorithm> `std::replace_copy_if()` function
581// to replace a container's elements of some value with a new value based on
582// some condition, and return the results within an iterator.
583template <typename C, typename OutputIterator, typename Pred, typename T>
584OutputIterator c_replace_copy_if(const C& c, OutputIterator result, Pred&& pred,
585 T&& new_value) {
586 return std::replace_copy_if(container_algorithm_internal::c_begin(c),
587 container_algorithm_internal::c_end(c), result,
588 std::forward<Pred>(pred),
589 std::forward<T>(new_value));
590}
591
592// c_fill()
593//
594// Container-based version of the <algorithm> `std::fill()` function to fill a
595// container with some value.
596template <typename C, typename T>
597void c_fill(C& c, T&& value) {
598 std::fill(container_algorithm_internal::c_begin(c),
599 container_algorithm_internal::c_end(c), std::forward<T>(value));
600}
601
602// c_fill_n()
603//
604// Container-based version of the <algorithm> `std::fill_n()` function to fill
605// the first N elements in a container with some value.
606template <typename C, typename Size, typename T>
607void c_fill_n(C& c, Size n, T&& value) {
608 std::fill_n(container_algorithm_internal::c_begin(c), n,
609 std::forward<T>(value));
610}
611
612// c_generate()
613//
614// Container-based version of the <algorithm> `std::generate()` function to
615// assign a container's elements to the values provided by the given generator.
616template <typename C, typename Generator>
617void c_generate(C& c, Generator&& gen) {
618 std::generate(container_algorithm_internal::c_begin(c),
619 container_algorithm_internal::c_end(c),
620 std::forward<Generator>(gen));
621}
622
623// c_generate_n()
624//
625// Container-based version of the <algorithm> `std::generate_n()` function to
626// assign a container's first N elements to the values provided by the given
627// generator.
628template <typename C, typename Size, typename Generator>
629container_algorithm_internal::ContainerIter<C> c_generate_n(C& c, Size n,
630 Generator&& gen) {
631 return std::generate_n(container_algorithm_internal::c_begin(c), n,
632 std::forward<Generator>(gen));
633}
634
635// Note: `c_xx()` <algorithm> container versions for `remove()`, `remove_if()`,
636// and `unique()` are omitted, because it's not clear whether or not such
637// functions should call erase on their supplied sequences afterwards. Either
638// behavior would be surprising for a different set of users.
639//
640
641// c_remove_copy()
642//
643// Container-based version of the <algorithm> `std::remove_copy()` function to
644// copy a container's elements while removing any elements matching the given
645// `value`.
646template <typename C, typename OutputIterator, typename T>
647OutputIterator c_remove_copy(const C& c, OutputIterator result, T&& value) {
648 return std::remove_copy(container_algorithm_internal::c_begin(c),
649 container_algorithm_internal::c_end(c), result,
650 std::forward<T>(value));
651}
652
653// c_remove_copy_if()
654//
655// Container-based version of the <algorithm> `std::remove_copy_if()` function
656// to copy a container's elements while removing any elements matching the given
657// condition.
658template <typename C, typename OutputIterator, typename Pred>
659OutputIterator c_remove_copy_if(const C& c, OutputIterator result,
660 Pred&& pred) {
661 return std::remove_copy_if(container_algorithm_internal::c_begin(c),
662 container_algorithm_internal::c_end(c), result,
663 std::forward<Pred>(pred));
664}
665
666// c_unique_copy()
667//
668// Container-based version of the <algorithm> `std::unique_copy()` function to
669// copy a container's elements while removing any elements containing duplicate
670// values.
671template <typename C, typename OutputIterator>
672OutputIterator c_unique_copy(const C& c, OutputIterator result) {
673 return std::unique_copy(container_algorithm_internal::c_begin(c),
674 container_algorithm_internal::c_end(c), result);
675}
676
677// Overload of c_unique_copy() for using a predicate evaluation other than
678// `==` for comparing uniqueness of the element values.
679template <typename C, typename OutputIterator, typename BinaryPredicate>
680OutputIterator c_unique_copy(const C& c, OutputIterator result,
681 BinaryPredicate&& pred) {
682 return std::unique_copy(container_algorithm_internal::c_begin(c),
683 container_algorithm_internal::c_end(c), result,
684 std::forward<BinaryPredicate>(pred));
685}
686
687// c_reverse()
688//
689// Container-based version of the <algorithm> `std::reverse()` function to
690// reverse a container's elements.
691template <typename Sequence>
692void c_reverse(Sequence& sequence) {
693 std::reverse(container_algorithm_internal::c_begin(sequence),
694 container_algorithm_internal::c_end(sequence));
695}
696
697// c_reverse_copy()
698//
699// Container-based version of the <algorithm> `std::reverse()` function to
700// reverse a container's elements and write them to an iterator range.
701template <typename C, typename OutputIterator>
702OutputIterator c_reverse_copy(const C& sequence, OutputIterator result) {
703 return std::reverse_copy(container_algorithm_internal::c_begin(sequence),
704 container_algorithm_internal::c_end(sequence),
705 result);
706}
707
708// c_rotate()
709//
710// Container-based version of the <algorithm> `std::rotate()` function to
711// shift a container's elements leftward such that the `middle` element becomes
712// the first element in the container.
713template <typename C,
714 typename Iterator = container_algorithm_internal::ContainerIter<C>>
715Iterator c_rotate(C& sequence, Iterator middle) {
716 return absl::rotate(container_algorithm_internal::c_begin(sequence), middle,
717 container_algorithm_internal::c_end(sequence));
718}
719
720// c_rotate_copy()
721//
722// Container-based version of the <algorithm> `std::rotate_copy()` function to
723// shift a container's elements leftward such that the `middle` element becomes
724// the first element in a new iterator range.
725template <typename C, typename OutputIterator>
726OutputIterator c_rotate_copy(
727 const C& sequence,
728 container_algorithm_internal::ContainerIter<const C> middle,
729 OutputIterator result) {
730 return std::rotate_copy(container_algorithm_internal::c_begin(sequence),
731 middle, container_algorithm_internal::c_end(sequence),
732 result);
733}
734
735// c_shuffle()
736//
737// Container-based version of the <algorithm> `std::shuffle()` function to
738// randomly shuffle elements within the container using a `gen()` uniform random
739// number generator.
740template <typename RandomAccessContainer, typename UniformRandomBitGenerator>
741void c_shuffle(RandomAccessContainer& c, UniformRandomBitGenerator&& gen) {
742 std::shuffle(container_algorithm_internal::c_begin(c),
743 container_algorithm_internal::c_end(c),
744 std::forward<UniformRandomBitGenerator>(gen));
745}
746
747//------------------------------------------------------------------------------
748// <algorithm> Partition functions
749//------------------------------------------------------------------------------
750
751// c_is_partitioned()
752//
753// Container-based version of the <algorithm> `std::is_partitioned()` function
754// to test whether all elements in the container for which `pred` returns `true`
755// precede those for which `pred` is `false`.
756template <typename C, typename Pred>
757bool c_is_partitioned(const C& c, Pred&& pred) {
758 return std::is_partitioned(container_algorithm_internal::c_begin(c),
759 container_algorithm_internal::c_end(c),
760 std::forward<Pred>(pred));
761}
762
763// c_partition()
764//
765// Container-based version of the <algorithm> `std::partition()` function
766// to rearrange all elements in a container in such a way that all elements for
767// which `pred` returns `true` precede all those for which it returns `false`,
768// returning an iterator to the first element of the second group.
769template <typename C, typename Pred>
770container_algorithm_internal::ContainerIter<C> c_partition(C& c, Pred&& pred) {
771 return std::partition(container_algorithm_internal::c_begin(c),
772 container_algorithm_internal::c_end(c),
773 std::forward<Pred>(pred));
774}
775
776// c_stable_partition()
777//
778// Container-based version of the <algorithm> `std::stable_partition()` function
779// to rearrange all elements in a container in such a way that all elements for
780// which `pred` returns `true` precede all those for which it returns `false`,
781// preserving the relative ordering between the two groups. The function returns
782// an iterator to the first element of the second group.
783template <typename C, typename Pred>
784container_algorithm_internal::ContainerIter<C> c_stable_partition(C& c,
785 Pred&& pred) {
786 return std::stable_partition(container_algorithm_internal::c_begin(c),
787 container_algorithm_internal::c_end(c),
788 std::forward<Pred>(pred));
789}
790
791// c_partition_copy()
792//
793// Container-based version of the <algorithm> `std::partition_copy()` function
794// to partition a container's elements and return them into two iterators: one
795// for which `pred` returns `true`, and one for which `pred` returns `false.`
796
797template <typename C, typename OutputIterator1, typename OutputIterator2,
798 typename Pred>
799std::pair<OutputIterator1, OutputIterator2> c_partition_copy(
800 const C& c, OutputIterator1 out_true, OutputIterator2 out_false,
801 Pred&& pred) {
802 return std::partition_copy(container_algorithm_internal::c_begin(c),
803 container_algorithm_internal::c_end(c), out_true,
804 out_false, std::forward<Pred>(pred));
805}
806
807// c_partition_point()
808//
809// Container-based version of the <algorithm> `std::partition_point()` function
810// to return the first element of an already partitioned container for which
811// the given `pred` is not `true`.
812template <typename C, typename Pred>
813container_algorithm_internal::ContainerIter<C> c_partition_point(C& c,
814 Pred&& pred) {
815 return std::partition_point(container_algorithm_internal::c_begin(c),
816 container_algorithm_internal::c_end(c),
817 std::forward<Pred>(pred));
818}
819
820//------------------------------------------------------------------------------
821// <algorithm> Sorting functions
822//------------------------------------------------------------------------------
823
824// c_sort()
825//
826// Container-based version of the <algorithm> `std::sort()` function
827// to sort elements in ascending order of their values.
828template <typename C>
829void c_sort(C& c) {
830 std::sort(container_algorithm_internal::c_begin(c),
831 container_algorithm_internal::c_end(c));
832}
833
834// Overload of c_sort() for performing a `comp` comparison other than the
835// default `operator<`.
836template <typename C, typename Compare>
837void c_sort(C& c, Compare&& comp) {
838 std::sort(container_algorithm_internal::c_begin(c),
839 container_algorithm_internal::c_end(c),
840 std::forward<Compare>(comp));
841}
842
843// c_stable_sort()
844//
845// Container-based version of the <algorithm> `std::stable_sort()` function
846// to sort elements in ascending order of their values, preserving the order
847// of equivalents.
848template <typename C>
849void c_stable_sort(C& c) {
850 std::stable_sort(container_algorithm_internal::c_begin(c),
851 container_algorithm_internal::c_end(c));
852}
853
854// Overload of c_stable_sort() for performing a `comp` comparison other than the
855// default `operator<`.
856template <typename C, typename Compare>
857void c_stable_sort(C& c, Compare&& comp) {
858 std::stable_sort(container_algorithm_internal::c_begin(c),
859 container_algorithm_internal::c_end(c),
860 std::forward<Compare>(comp));
861}
862
863// c_is_sorted()
864//
865// Container-based version of the <algorithm> `std::is_sorted()` function
866// to evaluate whether the given container is sorted in ascending order.
867template <typename C>
868bool c_is_sorted(const C& c) {
869 return std::is_sorted(container_algorithm_internal::c_begin(c),
870 container_algorithm_internal::c_end(c));
871}
872
873// c_is_sorted() overload for performing a `comp` comparison other than the
874// default `operator<`.
875template <typename C, typename Compare>
876bool c_is_sorted(const C& c, Compare&& comp) {
877 return std::is_sorted(container_algorithm_internal::c_begin(c),
878 container_algorithm_internal::c_end(c),
879 std::forward<Compare>(comp));
880}
881
882// c_partial_sort()
883//
884// Container-based version of the <algorithm> `std::partial_sort()` function
885// to rearrange elements within a container such that elements before `middle`
886// are sorted in ascending order.
887template <typename RandomAccessContainer>
888void c_partial_sort(
889 RandomAccessContainer& sequence,
890 container_algorithm_internal::ContainerIter<RandomAccessContainer> middle) {
891 std::partial_sort(container_algorithm_internal::c_begin(sequence), middle,
892 container_algorithm_internal::c_end(sequence));
893}
894
895// Overload of c_partial_sort() for performing a `comp` comparison other than
896// the default `operator<`.
897template <typename RandomAccessContainer, typename Compare>
898void c_partial_sort(
899 RandomAccessContainer& sequence,
900 container_algorithm_internal::ContainerIter<RandomAccessContainer> middle,
901 Compare&& comp) {
902 std::partial_sort(container_algorithm_internal::c_begin(sequence), middle,
903 container_algorithm_internal::c_end(sequence),
904 std::forward<Compare>(comp));
905}
906
907// c_partial_sort_copy()
908//
909// Container-based version of the <algorithm> `std::partial_sort_copy()`
910// function to sort elements within a container such that elements before
911// `middle` are sorted in ascending order, and return the result within an
912// iterator.
913template <typename C, typename RandomAccessContainer>
914container_algorithm_internal::ContainerIter<RandomAccessContainer>
915c_partial_sort_copy(const C& sequence, RandomAccessContainer& result) {
916 return std::partial_sort_copy(container_algorithm_internal::c_begin(sequence),
917 container_algorithm_internal::c_end(sequence),
918 container_algorithm_internal::c_begin(result),
919 container_algorithm_internal::c_end(result));
920}
921
922// Overload of c_partial_sort_copy() for performing a `comp` comparison other
923// than the default `operator<`.
924template <typename C, typename RandomAccessContainer, typename Compare>
925container_algorithm_internal::ContainerIter<RandomAccessContainer>
926c_partial_sort_copy(const C& sequence, RandomAccessContainer& result,
927 Compare&& comp) {
928 return std::partial_sort_copy(container_algorithm_internal::c_begin(sequence),
929 container_algorithm_internal::c_end(sequence),
930 container_algorithm_internal::c_begin(result),
931 container_algorithm_internal::c_end(result),
932 std::forward<Compare>(comp));
933}
934
935// c_is_sorted_until()
936//
937// Container-based version of the <algorithm> `std::is_sorted_until()` function
938// to return the first element within a container that is not sorted in
939// ascending order as an iterator.
940template <typename C>
941container_algorithm_internal::ContainerIter<C> c_is_sorted_until(C& c) {
942 return std::is_sorted_until(container_algorithm_internal::c_begin(c),
943 container_algorithm_internal::c_end(c));
944}
945
946// Overload of c_is_sorted_until() for performing a `comp` comparison other than
947// the default `operator<`.
948template <typename C, typename Compare>
949container_algorithm_internal::ContainerIter<C> c_is_sorted_until(
950 C& c, Compare&& comp) {
951 return std::is_sorted_until(container_algorithm_internal::c_begin(c),
952 container_algorithm_internal::c_end(c),
953 std::forward<Compare>(comp));
954}
955
956// c_nth_element()
957//
958// Container-based version of the <algorithm> `std::nth_element()` function
959// to rearrange the elements within a container such that the `nth` element
960// would be in that position in an ordered sequence; other elements may be in
961// any order, except that all preceding `nth` will be less than that element,
962// and all following `nth` will be greater than that element.
963template <typename RandomAccessContainer>
964void c_nth_element(
965 RandomAccessContainer& sequence,
966 container_algorithm_internal::ContainerIter<RandomAccessContainer> nth) {
967 std::nth_element(container_algorithm_internal::c_begin(sequence), nth,
968 container_algorithm_internal::c_end(sequence));
969}
970
971// Overload of c_nth_element() for performing a `comp` comparison other than
972// the default `operator<`.
973template <typename RandomAccessContainer, typename Compare>
974void c_nth_element(
975 RandomAccessContainer& sequence,
976 container_algorithm_internal::ContainerIter<RandomAccessContainer> nth,
977 Compare&& comp) {
978 std::nth_element(container_algorithm_internal::c_begin(sequence), nth,
979 container_algorithm_internal::c_end(sequence),
980 std::forward<Compare>(comp));
981}
982
983//------------------------------------------------------------------------------
984// <algorithm> Binary Search
985//------------------------------------------------------------------------------
986
987// c_lower_bound()
988//
989// Container-based version of the <algorithm> `std::lower_bound()` function
990// to return an iterator pointing to the first element in a sorted container
991// which does not compare less than `value`.
992template <typename Sequence, typename T>
993container_algorithm_internal::ContainerIter<Sequence> c_lower_bound(
994 Sequence& sequence, T&& value) {
995 return std::lower_bound(container_algorithm_internal::c_begin(sequence),
996 container_algorithm_internal::c_end(sequence),
997 std::forward<T>(value));
998}
999
1000// Overload of c_lower_bound() for performing a `comp` comparison other than
1001// the default `operator<`.
1002template <typename Sequence, typename T, typename Compare>
1003container_algorithm_internal::ContainerIter<Sequence> c_lower_bound(
1004 Sequence& sequence, T&& value, Compare&& comp) {
1005 return std::lower_bound(container_algorithm_internal::c_begin(sequence),
1006 container_algorithm_internal::c_end(sequence),
1007 std::forward<T>(value), std::forward<Compare>(comp));
1008}
1009
1010// c_upper_bound()
1011//
1012// Container-based version of the <algorithm> `std::upper_bound()` function
1013// to return an iterator pointing to the first element in a sorted container
1014// which is greater than `value`.
1015template <typename Sequence, typename T>
1016container_algorithm_internal::ContainerIter<Sequence> c_upper_bound(
1017 Sequence& sequence, T&& value) {
1018 return std::upper_bound(container_algorithm_internal::c_begin(sequence),
1019 container_algorithm_internal::c_end(sequence),
1020 std::forward<T>(value));
1021}
1022
1023// Overload of c_upper_bound() for performing a `comp` comparison other than
1024// the default `operator<`.
1025template <typename Sequence, typename T, typename Compare>
1026container_algorithm_internal::ContainerIter<Sequence> c_upper_bound(
1027 Sequence& sequence, T&& value, Compare&& comp) {
1028 return std::upper_bound(container_algorithm_internal::c_begin(sequence),
1029 container_algorithm_internal::c_end(sequence),
1030 std::forward<T>(value), std::forward<Compare>(comp));
1031}
1032
1033// c_equal_range()
1034//
1035// Container-based version of the <algorithm> `std::equal_range()` function
1036// to return an iterator pair pointing to the first and last elements in a
1037// sorted container which compare equal to `value`.
1038template <typename Sequence, typename T>
1039container_algorithm_internal::ContainerIterPairType<Sequence, Sequence>
1040c_equal_range(Sequence& sequence, T&& value) {
1041 return std::equal_range(container_algorithm_internal::c_begin(sequence),
1042 container_algorithm_internal::c_end(sequence),
1043 std::forward<T>(value));
1044}
1045
1046// Overload of c_equal_range() for performing a `comp` comparison other than
1047// the default `operator<`.
1048template <typename Sequence, typename T, typename Compare>
1049container_algorithm_internal::ContainerIterPairType<Sequence, Sequence>
1050c_equal_range(Sequence& sequence, T&& value, Compare&& comp) {
1051 return std::equal_range(container_algorithm_internal::c_begin(sequence),
1052 container_algorithm_internal::c_end(sequence),
1053 std::forward<T>(value), std::forward<Compare>(comp));
1054}
1055
1056// c_binary_search()
1057//
1058// Container-based version of the <algorithm> `std::binary_search()` function
1059// to test if any element in the sorted container contains a value equivalent to
1060// 'value'.
1061template <typename Sequence, typename T>
1062bool c_binary_search(Sequence&& sequence, T&& value) {
1063 return std::binary_search(container_algorithm_internal::c_begin(sequence),
1064 container_algorithm_internal::c_end(sequence),
1065 std::forward<T>(value));
1066}
1067
1068// Overload of c_binary_search() for performing a `comp` comparison other than
1069// the default `operator<`.
1070template <typename Sequence, typename T, typename Compare>
1071bool c_binary_search(Sequence&& sequence, T&& value, Compare&& comp) {
1072 return std::binary_search(container_algorithm_internal::c_begin(sequence),
1073 container_algorithm_internal::c_end(sequence),
1074 std::forward<T>(value),
1075 std::forward<Compare>(comp));
1076}
1077
1078//------------------------------------------------------------------------------
1079// <algorithm> Merge functions
1080//------------------------------------------------------------------------------
1081
1082// c_merge()
1083//
1084// Container-based version of the <algorithm> `std::merge()` function
1085// to merge two sorted containers into a single sorted iterator.
1086template <typename C1, typename C2, typename OutputIterator>
1087OutputIterator c_merge(const C1& c1, const C2& c2, OutputIterator result) {
1088 return std::merge(container_algorithm_internal::c_begin(c1),
1089 container_algorithm_internal::c_end(c1),
1090 container_algorithm_internal::c_begin(c2),
1091 container_algorithm_internal::c_end(c2), result);
1092}
1093
1094// Overload of c_merge() for performing a `comp` comparison other than
1095// the default `operator<`.
1096template <typename C1, typename C2, typename OutputIterator, typename Compare>
1097OutputIterator c_merge(const C1& c1, const C2& c2, OutputIterator result,
1098 Compare&& comp) {
1099 return std::merge(container_algorithm_internal::c_begin(c1),
1100 container_algorithm_internal::c_end(c1),
1101 container_algorithm_internal::c_begin(c2),
1102 container_algorithm_internal::c_end(c2), result,
1103 std::forward<Compare>(comp));
1104}
1105
1106// c_inplace_merge()
1107//
1108// Container-based version of the <algorithm> `std::inplace_merge()` function
1109// to merge a supplied iterator `middle` into a container.
1110template <typename C>
1111void c_inplace_merge(C& c,
1112 container_algorithm_internal::ContainerIter<C> middle) {
1113 std::inplace_merge(container_algorithm_internal::c_begin(c), middle,
1114 container_algorithm_internal::c_end(c));
1115}
1116
1117// Overload of c_inplace_merge() for performing a merge using a `comp` other
1118// than `operator<`.
1119template <typename C, typename Compare>
1120void c_inplace_merge(C& c,
1121 container_algorithm_internal::ContainerIter<C> middle,
1122 Compare&& comp) {
1123 std::inplace_merge(container_algorithm_internal::c_begin(c), middle,
1124 container_algorithm_internal::c_end(c),
1125 std::forward<Compare>(comp));
1126}
1127
1128// c_includes()
1129//
1130// Container-based version of the <algorithm> `std::includes()` function
1131// to test whether a sorted container `c1` entirely contains another sorted
1132// container `c2`.
1133template <typename C1, typename C2>
1134bool c_includes(const C1& c1, const C2& c2) {
1135 return std::includes(container_algorithm_internal::c_begin(c1),
1136 container_algorithm_internal::c_end(c1),
1137 container_algorithm_internal::c_begin(c2),
1138 container_algorithm_internal::c_end(c2));
1139}
1140
1141// Overload of c_includes() for performing a merge using a `comp` other than
1142// `operator<`.
1143template <typename C1, typename C2, typename Compare>
1144bool c_includes(const C1& c1, const C2& c2, Compare&& comp) {
1145 return std::includes(container_algorithm_internal::c_begin(c1),
1146 container_algorithm_internal::c_end(c1),
1147 container_algorithm_internal::c_begin(c2),
1148 container_algorithm_internal::c_end(c2),
1149 std::forward<Compare>(comp));
1150}
1151
1152// c_set_union()
1153//
1154// Container-based version of the <algorithm> `std::set_union()` function
1155// to return an iterator containing the union of two containers; duplicate
1156// values are not copied into the output.
1157template <typename C1, typename C2, typename OutputIterator>
1158OutputIterator c_set_union(const C1& c1, const C2& c2, OutputIterator output) {
1159 return std::set_union(container_algorithm_internal::c_begin(c1),
1160 container_algorithm_internal::c_end(c1),
1161 container_algorithm_internal::c_begin(c2),
1162 container_algorithm_internal::c_end(c2), output);
1163}
1164
1165// Overload of c_set_union() for performing a merge using a `comp` other than
1166// `operator<`.
1167template <typename C1, typename C2, typename OutputIterator, typename Compare>
1168OutputIterator c_set_union(const C1& c1, const C2& c2, OutputIterator output,
1169 Compare&& comp) {
1170 return std::set_union(container_algorithm_internal::c_begin(c1),
1171 container_algorithm_internal::c_end(c1),
1172 container_algorithm_internal::c_begin(c2),
1173 container_algorithm_internal::c_end(c2), output,
1174 std::forward<Compare>(comp));
1175}
1176
1177// c_set_intersection()
1178//
1179// Container-based version of the <algorithm> `std::set_intersection()` function
1180// to return an iterator containing the intersection of two containers.
1181template <typename C1, typename C2, typename OutputIterator>
1182OutputIterator c_set_intersection(const C1& c1, const C2& c2,
1183 OutputIterator output) {
1184 return std::set_intersection(container_algorithm_internal::c_begin(c1),
1185 container_algorithm_internal::c_end(c1),
1186 container_algorithm_internal::c_begin(c2),
1187 container_algorithm_internal::c_end(c2), output);
1188}
1189
1190// Overload of c_set_intersection() for performing a merge using a `comp` other
1191// than `operator<`.
1192template <typename C1, typename C2, typename OutputIterator, typename Compare>
1193OutputIterator c_set_intersection(const C1& c1, const C2& c2,
1194 OutputIterator output, Compare&& comp) {
1195 return std::set_intersection(container_algorithm_internal::c_begin(c1),
1196 container_algorithm_internal::c_end(c1),
1197 container_algorithm_internal::c_begin(c2),
1198 container_algorithm_internal::c_end(c2), output,
1199 std::forward<Compare>(comp));
1200}
1201
1202// c_set_difference()
1203//
1204// Container-based version of the <algorithm> `std::set_difference()` function
1205// to return an iterator containing elements present in the first container but
1206// not in the second.
1207template <typename C1, typename C2, typename OutputIterator>
1208OutputIterator c_set_difference(const C1& c1, const C2& c2,
1209 OutputIterator output) {
1210 return std::set_difference(container_algorithm_internal::c_begin(c1),
1211 container_algorithm_internal::c_end(c1),
1212 container_algorithm_internal::c_begin(c2),
1213 container_algorithm_internal::c_end(c2), output);
1214}
1215
1216// Overload of c_set_difference() for performing a merge using a `comp` other
1217// than `operator<`.
1218template <typename C1, typename C2, typename OutputIterator, typename Compare>
1219OutputIterator c_set_difference(const C1& c1, const C2& c2,
1220 OutputIterator output, Compare&& comp) {
1221 return std::set_difference(container_algorithm_internal::c_begin(c1),
1222 container_algorithm_internal::c_end(c1),
1223 container_algorithm_internal::c_begin(c2),
1224 container_algorithm_internal::c_end(c2), output,
1225 std::forward<Compare>(comp));
1226}
1227
1228// c_set_symmetric_difference()
1229//
1230// Container-based version of the <algorithm> `std::set_symmetric_difference()`
1231// function to return an iterator containing elements present in either one
1232// container or the other, but not both.
1233template <typename C1, typename C2, typename OutputIterator>
1234OutputIterator c_set_symmetric_difference(const C1& c1, const C2& c2,
1235 OutputIterator output) {
1236 return std::set_symmetric_difference(
1237 container_algorithm_internal::c_begin(c1),
1238 container_algorithm_internal::c_end(c1),
1239 container_algorithm_internal::c_begin(c2),
1240 container_algorithm_internal::c_end(c2), output);
1241}
1242
1243// Overload of c_set_symmetric_difference() for performing a merge using a
1244// `comp` other than `operator<`.
1245template <typename C1, typename C2, typename OutputIterator, typename Compare>
1246OutputIterator c_set_symmetric_difference(const C1& c1, const C2& c2,
1247 OutputIterator output,
1248 Compare&& comp) {
1249 return std::set_symmetric_difference(
1250 container_algorithm_internal::c_begin(c1),
1251 container_algorithm_internal::c_end(c1),
1252 container_algorithm_internal::c_begin(c2),
1253 container_algorithm_internal::c_end(c2), output,
1254 std::forward<Compare>(comp));
1255}
1256
1257//------------------------------------------------------------------------------
1258// <algorithm> Heap functions
1259//------------------------------------------------------------------------------
1260
1261// c_push_heap()
1262//
1263// Container-based version of the <algorithm> `std::push_heap()` function
1264// to push a value onto a container heap.
1265template <typename RandomAccessContainer>
1266void c_push_heap(RandomAccessContainer& sequence) {
1267 std::push_heap(container_algorithm_internal::c_begin(sequence),
1268 container_algorithm_internal::c_end(sequence));
1269}
1270
1271// Overload of c_push_heap() for performing a push operation on a heap using a
1272// `comp` other than `operator<`.
1273template <typename RandomAccessContainer, typename Compare>
1274void c_push_heap(RandomAccessContainer& sequence, Compare&& comp) {
1275 std::push_heap(container_algorithm_internal::c_begin(sequence),
1276 container_algorithm_internal::c_end(sequence),
1277 std::forward<Compare>(comp));
1278}
1279
1280// c_pop_heap()
1281//
1282// Container-based version of the <algorithm> `std::pop_heap()` function
1283// to pop a value from a heap container.
1284template <typename RandomAccessContainer>
1285void c_pop_heap(RandomAccessContainer& sequence) {
1286 std::pop_heap(container_algorithm_internal::c_begin(sequence),
1287 container_algorithm_internal::c_end(sequence));
1288}
1289
1290// Overload of c_pop_heap() for performing a pop operation on a heap using a
1291// `comp` other than `operator<`.
1292template <typename RandomAccessContainer, typename Compare>
1293void c_pop_heap(RandomAccessContainer& sequence, Compare&& comp) {
1294 std::pop_heap(container_algorithm_internal::c_begin(sequence),
1295 container_algorithm_internal::c_end(sequence),
1296 std::forward<Compare>(comp));
1297}
1298
1299// c_make_heap()
1300//
1301// Container-based version of the <algorithm> `std::make_heap()` function
1302// to make a container a heap.
1303template <typename RandomAccessContainer>
1304void c_make_heap(RandomAccessContainer& sequence) {
1305 std::make_heap(container_algorithm_internal::c_begin(sequence),
1306 container_algorithm_internal::c_end(sequence));
1307}
1308
1309// Overload of c_make_heap() for performing heap comparisons using a
1310// `comp` other than `operator<`
1311template <typename RandomAccessContainer, typename Compare>
1312void c_make_heap(RandomAccessContainer& sequence, Compare&& comp) {
1313 std::make_heap(container_algorithm_internal::c_begin(sequence),
1314 container_algorithm_internal::c_end(sequence),
1315 std::forward<Compare>(comp));
1316}
1317
1318// c_sort_heap()
1319//
1320// Container-based version of the <algorithm> `std::sort_heap()` function
1321// to sort a heap into ascending order (after which it is no longer a heap).
1322template <typename RandomAccessContainer>
1323void c_sort_heap(RandomAccessContainer& sequence) {
1324 std::sort_heap(container_algorithm_internal::c_begin(sequence),
1325 container_algorithm_internal::c_end(sequence));
1326}
1327
1328// Overload of c_sort_heap() for performing heap comparisons using a
1329// `comp` other than `operator<`
1330template <typename RandomAccessContainer, typename Compare>
1331void c_sort_heap(RandomAccessContainer& sequence, Compare&& comp) {
1332 std::sort_heap(container_algorithm_internal::c_begin(sequence),
1333 container_algorithm_internal::c_end(sequence),
1334 std::forward<Compare>(comp));
1335}
1336
1337// c_is_heap()
1338//
1339// Container-based version of the <algorithm> `std::is_heap()` function
1340// to check whether the given container is a heap.
1341template <typename RandomAccessContainer>
1342bool c_is_heap(const RandomAccessContainer& sequence) {
1343 return std::is_heap(container_algorithm_internal::c_begin(sequence),
1344 container_algorithm_internal::c_end(sequence));
1345}
1346
1347// Overload of c_is_heap() for performing heap comparisons using a
1348// `comp` other than `operator<`
1349template <typename RandomAccessContainer, typename Compare>
1350bool c_is_heap(const RandomAccessContainer& sequence, Compare&& comp) {
1351 return std::is_heap(container_algorithm_internal::c_begin(sequence),
1352 container_algorithm_internal::c_end(sequence),
1353 std::forward<Compare>(comp));
1354}
1355
1356// c_is_heap_until()
1357//
1358// Container-based version of the <algorithm> `std::is_heap_until()` function
1359// to find the first element in a given container which is not in heap order.
1360template <typename RandomAccessContainer>
1361container_algorithm_internal::ContainerIter<RandomAccessContainer>
1362c_is_heap_until(RandomAccessContainer& sequence) {
1363 return std::is_heap_until(container_algorithm_internal::c_begin(sequence),
1364 container_algorithm_internal::c_end(sequence));
1365}
1366
1367// Overload of c_is_heap_until() for performing heap comparisons using a
1368// `comp` other than `operator<`
1369template <typename RandomAccessContainer, typename Compare>
1370container_algorithm_internal::ContainerIter<RandomAccessContainer>
1371c_is_heap_until(RandomAccessContainer& sequence, Compare&& comp) {
1372 return std::is_heap_until(container_algorithm_internal::c_begin(sequence),
1373 container_algorithm_internal::c_end(sequence),
1374 std::forward<Compare>(comp));
1375}
1376
1377//------------------------------------------------------------------------------
1378// <algorithm> Min/max
1379//------------------------------------------------------------------------------
1380
1381// c_min_element()
1382//
1383// Container-based version of the <algorithm> `std::min_element()` function
1384// to return an iterator pointing to the element with the smallest value, using
1385// `operator<` to make the comparisons.
1386template <typename Sequence>
1387container_algorithm_internal::ContainerIter<Sequence> c_min_element(
1388 Sequence& sequence) {
1389 return std::min_element(container_algorithm_internal::c_begin(sequence),
1390 container_algorithm_internal::c_end(sequence));
1391}
1392
1393// Overload of c_min_element() for performing a `comp` comparison other than
1394// `operator<`.
1395template <typename Sequence, typename Compare>
1396container_algorithm_internal::ContainerIter<Sequence> c_min_element(
1397 Sequence& sequence, Compare&& comp) {
1398 return std::min_element(container_algorithm_internal::c_begin(sequence),
1399 container_algorithm_internal::c_end(sequence),
1400 std::forward<Compare>(comp));
1401}
1402
1403// c_max_element()
1404//
1405// Container-based version of the <algorithm> `std::max_element()` function
1406// to return an iterator pointing to the element with the largest value, using
1407// `operator<` to make the comparisons.
1408template <typename Sequence>
1409container_algorithm_internal::ContainerIter<Sequence> c_max_element(
1410 Sequence& sequence) {
1411 return std::max_element(container_algorithm_internal::c_begin(sequence),
1412 container_algorithm_internal::c_end(sequence));
1413}
1414
1415// Overload of c_max_element() for performing a `comp` comparison other than
1416// `operator<`.
1417template <typename Sequence, typename Compare>
1418container_algorithm_internal::ContainerIter<Sequence> c_max_element(
1419 Sequence& sequence, Compare&& comp) {
1420 return std::max_element(container_algorithm_internal::c_begin(sequence),
1421 container_algorithm_internal::c_end(sequence),
1422 std::forward<Compare>(comp));
1423}
1424
1425// c_minmax_element()
1426//
1427// Container-based version of the <algorithm> `std::minmax_element()` function
1428// to return a pair of iterators pointing to the elements containing the
1429// smallest and largest values, respectively, using `operator<` to make the
1430// comparisons.
1431template <typename C>
1432container_algorithm_internal::ContainerIterPairType<C, C>
1433c_minmax_element(C& c) {
1434 return std::minmax_element(container_algorithm_internal::c_begin(c),
1435 container_algorithm_internal::c_end(c));
1436}
1437
1438// Overload of c_minmax_element() for performing `comp` comparisons other than
1439// `operator<`.
1440template <typename C, typename Compare>
1441container_algorithm_internal::ContainerIterPairType<C, C>
1442c_minmax_element(C& c, Compare&& comp) {
1443 return std::minmax_element(container_algorithm_internal::c_begin(c),
1444 container_algorithm_internal::c_end(c),
1445 std::forward<Compare>(comp));
1446}
1447
1448//------------------------------------------------------------------------------
1449// <algorithm> Lexicographical Comparisons
1450//------------------------------------------------------------------------------
1451
1452// c_lexicographical_compare()
1453//
1454// Container-based version of the <algorithm> `std::lexicographical_compare()`
1455// function to lexicographically compare (e.g. sort words alphabetically) two
1456// container sequences. The comparison is performed using `operator<`. Note
1457// that capital letters ("A-Z") have ASCII values less than lowercase letters
1458// ("a-z").
1459template <typename Sequence1, typename Sequence2>
1460bool c_lexicographical_compare(Sequence1&& sequence1, Sequence2&& sequence2) {
1461 return std::lexicographical_compare(
1462 container_algorithm_internal::c_begin(sequence1),
1463 container_algorithm_internal::c_end(sequence1),
1464 container_algorithm_internal::c_begin(sequence2),
1465 container_algorithm_internal::c_end(sequence2));
1466}
1467
1468// Overload of c_lexicographical_compare() for performing a lexicographical
1469// comparison using a `comp` operator instead of `operator<`.
1470template <typename Sequence1, typename Sequence2, typename Compare>
1471bool c_lexicographical_compare(Sequence1&& sequence1, Sequence2&& sequence2,
1472 Compare&& comp) {
1473 return std::lexicographical_compare(
1474 container_algorithm_internal::c_begin(sequence1),
1475 container_algorithm_internal::c_end(sequence1),
1476 container_algorithm_internal::c_begin(sequence2),
1477 container_algorithm_internal::c_end(sequence2),
1478 std::forward<Compare>(comp));
1479}
1480
1481// c_next_permutation()
1482//
1483// Container-based version of the <algorithm> `std::next_permutation()` function
1484// to rearrange a container's elements into the next lexicographically greater
1485// permutation.
1486template <typename C>
1487bool c_next_permutation(C& c) {
1488 return std::next_permutation(container_algorithm_internal::c_begin(c),
1489 container_algorithm_internal::c_end(c));
1490}
1491
1492// Overload of c_next_permutation() for performing a lexicographical
1493// comparison using a `comp` operator instead of `operator<`.
1494template <typename C, typename Compare>
1495bool c_next_permutation(C& c, Compare&& comp) {
1496 return std::next_permutation(container_algorithm_internal::c_begin(c),
1497 container_algorithm_internal::c_end(c),
1498 std::forward<Compare>(comp));
1499}
1500
1501// c_prev_permutation()
1502//
1503// Container-based version of the <algorithm> `std::prev_permutation()` function
1504// to rearrange a container's elements into the next lexicographically lesser
1505// permutation.
1506template <typename C>
1507bool c_prev_permutation(C& c) {
1508 return std::prev_permutation(container_algorithm_internal::c_begin(c),
1509 container_algorithm_internal::c_end(c));
1510}
1511
1512// Overload of c_prev_permutation() for performing a lexicographical
1513// comparison using a `comp` operator instead of `operator<`.
1514template <typename C, typename Compare>
1515bool c_prev_permutation(C& c, Compare&& comp) {
1516 return std::prev_permutation(container_algorithm_internal::c_begin(c),
1517 container_algorithm_internal::c_end(c),
1518 std::forward<Compare>(comp));
1519}
1520
1521//------------------------------------------------------------------------------
1522// <numeric> algorithms
1523//------------------------------------------------------------------------------
1524
1525// c_iota()
1526//
1527// Container-based version of the <algorithm> `std::iota()` function
1528// to compute successive values of `value`, as if incremented with `++value`
1529// after each element is written. and write them to the container.
1530template <typename Sequence, typename T>
1531void c_iota(Sequence& sequence, T&& value) {
1532 std::iota(container_algorithm_internal::c_begin(sequence),
1533 container_algorithm_internal::c_end(sequence),
1534 std::forward<T>(value));
1535}
1536// c_accumulate()
1537//
1538// Container-based version of the <algorithm> `std::accumulate()` function
1539// to accumulate the element values of a container to `init` and return that
1540// accumulation by value.
1541//
1542// Note: Due to a language technicality this function has return type
1543// absl::decay_t<T>. As a user of this function you can casually read
1544// this as "returns T by value" and assume it does the right thing.
1545template <typename Sequence, typename T>
1546decay_t<T> c_accumulate(const Sequence& sequence, T&& init) {
1547 return std::accumulate(container_algorithm_internal::c_begin(sequence),
1548 container_algorithm_internal::c_end(sequence),
1549 std::forward<T>(init));
1550}
1551
1552// Overload of c_accumulate() for using a binary operations other than
1553// addition for computing the accumulation.
1554template <typename Sequence, typename T, typename BinaryOp>
1555decay_t<T> c_accumulate(const Sequence& sequence, T&& init,
1556 BinaryOp&& binary_op) {
1557 return std::accumulate(container_algorithm_internal::c_begin(sequence),
1558 container_algorithm_internal::c_end(sequence),
1559 std::forward<T>(init),
1560 std::forward<BinaryOp>(binary_op));
1561}
1562
1563// c_inner_product()
1564//
1565// Container-based version of the <algorithm> `std::inner_product()` function
1566// to compute the cumulative inner product of container element pairs.
1567//
1568// Note: Due to a language technicality this function has return type
1569// absl::decay_t<T>. As a user of this function you can casually read
1570// this as "returns T by value" and assume it does the right thing.
1571template <typename Sequence1, typename Sequence2, typename T>
1572decay_t<T> c_inner_product(const Sequence1& factors1, const Sequence2& factors2,
1573 T&& sum) {
1574 return std::inner_product(container_algorithm_internal::c_begin(factors1),
1575 container_algorithm_internal::c_end(factors1),
1576 container_algorithm_internal::c_begin(factors2),
1577 std::forward<T>(sum));
1578}
1579
1580// Overload of c_inner_product() for using binary operations other than
1581// `operator+` (for computing the accumulation) and `operator*` (for computing
1582// the product between the two container's element pair).
1583template <typename Sequence1, typename Sequence2, typename T,
1584 typename BinaryOp1, typename BinaryOp2>
1585decay_t<T> c_inner_product(const Sequence1& factors1, const Sequence2& factors2,
1586 T&& sum, BinaryOp1&& op1, BinaryOp2&& op2) {
1587 return std::inner_product(container_algorithm_internal::c_begin(factors1),
1588 container_algorithm_internal::c_end(factors1),
1589 container_algorithm_internal::c_begin(factors2),
1590 std::forward<T>(sum), std::forward<BinaryOp1>(op1),
1591 std::forward<BinaryOp2>(op2));
1592}
1593
1594// c_adjacent_difference()
1595//
1596// Container-based version of the <algorithm> `std::adjacent_difference()`
1597// function to compute the difference between each element and the one preceding
1598// it and write it to an iterator.
1599template <typename InputSequence, typename OutputIt>
1600OutputIt c_adjacent_difference(const InputSequence& input,
1601 OutputIt output_first) {
1602 return std::adjacent_difference(container_algorithm_internal::c_begin(input),
1603 container_algorithm_internal::c_end(input),
1604 output_first);
1605}
1606
1607// Overload of c_adjacent_difference() for using a binary operation other than
1608// subtraction to compute the adjacent difference.
1609template <typename InputSequence, typename OutputIt, typename BinaryOp>
1610OutputIt c_adjacent_difference(const InputSequence& input,
1611 OutputIt output_first, BinaryOp&& op) {
1612 return std::adjacent_difference(container_algorithm_internal::c_begin(input),
1613 container_algorithm_internal::c_end(input),
1614 output_first, std::forward<BinaryOp>(op));
1615}
1616
1617// c_partial_sum()
1618//
1619// Container-based version of the <algorithm> `std::partial_sum()` function
1620// to compute the partial sum of the elements in a sequence and write them
1621// to an iterator. The partial sum is the sum of all element values so far in
1622// the sequence.
1623template <typename InputSequence, typename OutputIt>
1624OutputIt c_partial_sum(const InputSequence& input, OutputIt output_first) {
1625 return std::partial_sum(container_algorithm_internal::c_begin(input),
1626 container_algorithm_internal::c_end(input),
1627 output_first);
1628}
1629
1630// Overload of c_partial_sum() for using a binary operation other than addition
1631// to compute the "partial sum".
1632template <typename InputSequence, typename OutputIt, typename BinaryOp>
1633OutputIt c_partial_sum(const InputSequence& input, OutputIt output_first,
1634 BinaryOp&& op) {
1635 return std::partial_sum(container_algorithm_internal::c_begin(input),
1636 container_algorithm_internal::c_end(input),
1637 output_first, std::forward<BinaryOp>(op));
1638}
1639
1640} // namespace absl
1641
1642#endif // ABSL_ALGORITHM_CONTAINER_H_