abseil-cpp/absl/algorithm/container.h
Go to the documentation of this file.
1 // 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 // https://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 #ifndef ABSL_ALGORITHM_CONTAINER_H_
41 #define ABSL_ALGORITHM_CONTAINER_H_
42 
43 #include <algorithm>
44 #include <cassert>
45 #include <iterator>
46 #include <numeric>
47 #include <type_traits>
48 #include <unordered_map>
49 #include <unordered_set>
50 #include <utility>
51 #include <vector>
52 
53 #include "absl/algorithm/algorithm.h"
54 #include "absl/base/macros.h"
55 #include "absl/meta/type_traits.h"
56 
57 namespace absl {
59 namespace container_algorithm_internal {
60 
61 // NOTE: it is important to defer to ADL lookup for building with C++ modules,
62 // especially for headers like <valarray> which are not visible from this file
63 // but specialize std::begin and std::end.
64 using std::begin;
65 using std::end;
66 
67 // The type of the iterator given by begin(c) (possibly std::begin(c)).
68 // ContainerIter<const vector<T>> gives vector<T>::const_iterator,
69 // while ContainerIter<vector<T>> gives vector<T>::iterator.
70 template <typename C>
71 using ContainerIter = decltype(begin(std::declval<C&>()));
72 
73 // An MSVC bug involving template parameter substitution requires us to use
74 // decltype() here instead of just std::pair.
75 template <typename C1, typename C2>
77  decltype(std::make_pair(ContainerIter<C1>(), ContainerIter<C2>()));
78 
79 template <typename C>
81  decltype(std::distance(std::declval<ContainerIter<C>>(),
82  std::declval<ContainerIter<C>>()));
83 
84 template <typename C>
86  typename std::iterator_traits<ContainerIter<C>>::pointer;
87 
88 // container_algorithm_internal::c_begin and
89 // container_algorithm_internal::c_end are abbreviations for proper ADL
90 // lookup of std::begin and std::end, i.e.
91 // using std::begin;
92 // using std::end;
93 // std::foo(begin(c), end(c));
94 // becomes
95 // std::foo(container_algorithm_internal::begin(c),
96 // container_algorithm_internal::end(c));
97 // These are meant for internal use only.
98 
99 template <typename C>
100 ContainerIter<C> c_begin(C& c) { return begin(c); }
101 
102 template <typename C>
103 ContainerIter<C> c_end(C& c) { return end(c); }
104 
105 template <typename T>
107 
108 template <class Key, class T, class Hash, class KeyEqual, class Allocator>
110  std::unordered_map<Key, T, Hash, KeyEqual, Allocator>> : std::true_type {};
111 
112 template <class Key, class Hash, class KeyEqual, class Allocator>
113 struct IsUnorderedContainer<std::unordered_set<Key, Hash, KeyEqual, Allocator>>
114  : std::true_type {};
115 
116 // container_algorithm_internal::c_size. It is meant for internal use only.
117 
118 template <class C>
119 auto c_size(C& c) -> decltype(c.size()) {
120  return c.size();
121 }
122 
123 template <class T, std::size_t N>
124 constexpr std::size_t c_size(T (&)[N]) {
125  return N;
126 }
127 
128 } // namespace container_algorithm_internal
129 
130 // PUBLIC API
131 
132 //------------------------------------------------------------------------------
133 // Abseil algorithm.h functions
134 //------------------------------------------------------------------------------
135 
136 // c_linear_search()
137 //
138 // Container-based version of absl::linear_search() for performing a linear
139 // search within a container.
140 template <typename C, typename EqualityComparable>
141 bool c_linear_search(const C& c, EqualityComparable&& value) {
144  std::forward<EqualityComparable>(value));
145 }
146 
147 //------------------------------------------------------------------------------
148 // <iterator> algorithms
149 //------------------------------------------------------------------------------
150 
151 // c_distance()
152 //
153 // Container-based version of the <iterator> `std::distance()` function to
154 // return the number of elements within a container.
155 template <typename C>
157  const C& c) {
158  return std::distance(container_algorithm_internal::c_begin(c),
160 }
161 
162 //------------------------------------------------------------------------------
163 // <algorithm> Non-modifying sequence operations
164 //------------------------------------------------------------------------------
165 
166 // c_all_of()
167 //
168 // Container-based version of the <algorithm> `std::all_of()` function to
169 // test if all elements within a container satisfy a condition.
170 template <typename C, typename Pred>
171 bool c_all_of(const C& c, Pred&& pred) {
172  return std::all_of(container_algorithm_internal::c_begin(c),
174  std::forward<Pred>(pred));
175 }
176 
177 // c_any_of()
178 //
179 // Container-based version of the <algorithm> `std::any_of()` function to
180 // test if any element in a container fulfills a condition.
181 template <typename C, typename Pred>
182 bool c_any_of(const C& c, Pred&& pred) {
183  return std::any_of(container_algorithm_internal::c_begin(c),
185  std::forward<Pred>(pred));
186 }
187 
188 // c_none_of()
189 //
190 // Container-based version of the <algorithm> `std::none_of()` function to
191 // test if no elements in a container fulfill a condition.
192 template <typename C, typename Pred>
193 bool c_none_of(const C& c, Pred&& pred) {
194  return std::none_of(container_algorithm_internal::c_begin(c),
196  std::forward<Pred>(pred));
197 }
198 
199 // c_for_each()
200 //
201 // Container-based version of the <algorithm> `std::for_each()` function to
202 // apply a function to a container's elements.
203 template <typename C, typename Function>
205  return std::for_each(container_algorithm_internal::c_begin(c),
207  std::forward<Function>(f));
208 }
209 
210 // c_find()
211 //
212 // Container-based version of the <algorithm> `std::find()` function to find
213 // the first element containing the passed value within a container value.
214 template <typename C, typename T>
218  std::forward<T>(value));
219 }
220 
221 // c_find_if()
222 //
223 // Container-based version of the <algorithm> `std::find_if()` function to find
224 // the first element in a container matching the given condition.
225 template <typename C, typename Pred>
227  return std::find_if(container_algorithm_internal::c_begin(c),
229  std::forward<Pred>(pred));
230 }
231 
232 // c_find_if_not()
233 //
234 // Container-based version of the <algorithm> `std::find_if_not()` function to
235 // find the first element in a container not matching the given condition.
236 template <typename C, typename Pred>
238  Pred&& pred) {
239  return std::find_if_not(container_algorithm_internal::c_begin(c),
241  std::forward<Pred>(pred));
242 }
243 
244 // c_find_end()
245 //
246 // Container-based version of the <algorithm> `std::find_end()` function to
247 // find the last subsequence within a container.
248 template <typename Sequence1, typename Sequence2>
250  Sequence1& sequence, Sequence2& subsequence) {
251  return std::find_end(container_algorithm_internal::c_begin(sequence),
255 }
256 
257 // Overload of c_find_end() for using a predicate evaluation other than `==` as
258 // the function's test condition.
259 template <typename Sequence1, typename Sequence2, typename BinaryPredicate>
261  Sequence1& sequence, Sequence2& subsequence, BinaryPredicate&& pred) {
262  return std::find_end(container_algorithm_internal::c_begin(sequence),
266  std::forward<BinaryPredicate>(pred));
267 }
268 
269 // c_find_first_of()
270 //
271 // Container-based version of the <algorithm> `std::find_first_of()` function to
272 // find the first element within the container that is also within the options
273 // container.
274 template <typename C1, typename C2>
276  C2& options) {
277  return std::find_first_of(container_algorithm_internal::c_begin(container),
281 }
282 
283 // Overload of c_find_first_of() for using a predicate evaluation other than
284 // `==` as the function's test condition.
285 template <typename C1, typename C2, typename BinaryPredicate>
287  C1& container, C2& options, BinaryPredicate&& pred) {
288  return std::find_first_of(container_algorithm_internal::c_begin(container),
292  std::forward<BinaryPredicate>(pred));
293 }
294 
295 // c_adjacent_find()
296 //
297 // Container-based version of the <algorithm> `std::adjacent_find()` function to
298 // find equal adjacent elements within a container.
299 template <typename Sequence>
301  Sequence& sequence) {
302  return std::adjacent_find(container_algorithm_internal::c_begin(sequence),
304 }
305 
306 // Overload of c_adjacent_find() for using a predicate evaluation other than
307 // `==` as the function's test condition.
308 template <typename Sequence, typename BinaryPredicate>
310  Sequence& sequence, BinaryPredicate&& pred) {
311  return std::adjacent_find(container_algorithm_internal::c_begin(sequence),
313  std::forward<BinaryPredicate>(pred));
314 }
315 
316 // c_count()
317 //
318 // Container-based version of the <algorithm> `std::count()` function to count
319 // values that match within a container.
320 template <typename C, typename T>
322  const C& c, T&& value) {
325  std::forward<T>(value));
326 }
327 
328 // c_count_if()
329 //
330 // Container-based version of the <algorithm> `std::count_if()` function to
331 // count values matching a condition within a container.
332 template <typename C, typename Pred>
334  const C& c, Pred&& pred) {
335  return std::count_if(container_algorithm_internal::c_begin(c),
337  std::forward<Pred>(pred));
338 }
339 
340 // c_mismatch()
341 //
342 // Container-based version of the <algorithm> `std::mismatch()` function to
343 // return the first element where two ordered containers differ. Applies `==` to
344 // the first N elements of `c1` and `c2`, where N = min(size(c1), size(c2)).
345 template <typename C1, typename C2>
346 container_algorithm_internal::ContainerIterPairType<C1, C2>
347 c_mismatch(C1& c1, C2& c2) {
352 
353  for (; first1 != last1 && first2 != last2; ++first1, (void)++first2) {
354  // Negates equality because Cpp17EqualityComparable doesn't require clients
355  // to overload both `operator==` and `operator!=`.
356  if (!(*first1 == *first2)) {
357  break;
358  }
359  }
360 
361  return std::make_pair(first1, first2);
362 }
363 
364 // Overload of c_mismatch() for using a predicate evaluation other than `==` as
365 // the function's test condition. Applies `pred`to the first N elements of `c1`
366 // and `c2`, where N = min(size(c1), size(c2)).
367 template <typename C1, typename C2, typename BinaryPredicate>
368 container_algorithm_internal::ContainerIterPairType<C1, C2>
369 c_mismatch(C1& c1, C2& c2, BinaryPredicate pred) {
374 
375  for (; first1 != last1 && first2 != last2; ++first1, (void)++first2) {
376  if (!pred(*first1, *first2)) {
377  break;
378  }
379  }
380 
381  return std::make_pair(first1, first2);
382 }
383 
384 // c_equal()
385 //
386 // Container-based version of the <algorithm> `std::equal()` function to
387 // test whether two containers are equal.
388 //
389 // NOTE: the semantics of c_equal() are slightly different than those of
390 // equal(): while the latter iterates over the second container only up to the
391 // size of the first container, c_equal() also checks whether the container
392 // sizes are equal. This better matches expectations about c_equal() based on
393 // its signature.
394 //
395 // Example:
396 // vector v1 = <1, 2, 3>;
397 // vector v2 = <1, 2, 3, 4>;
398 // equal(std::begin(v1), std::end(v1), std::begin(v2)) returns true
399 // c_equal(v1, v2) returns false
400 
401 template <typename C1, typename C2>
402 bool c_equal(const C1& c1, const C2& c2) {
408 }
409 
410 // Overload of c_equal() for using a predicate evaluation other than `==` as
411 // the function's test condition.
412 template <typename C1, typename C2, typename BinaryPredicate>
413 bool c_equal(const C1& c1, const C2& c2, BinaryPredicate&& pred) {
419  std::forward<BinaryPredicate>(pred)));
420 }
421 
422 // c_is_permutation()
423 //
424 // Container-based version of the <algorithm> `std::is_permutation()` function
425 // to test whether a container is a permutation of another.
426 template <typename C1, typename C2>
427 bool c_is_permutation(const C1& c1, const C2& c2) {
428  using std::begin;
429  using std::end;
430  return c1.size() == c2.size() &&
431  std::is_permutation(begin(c1), end(c1), begin(c2));
432 }
433 
434 // Overload of c_is_permutation() for using a predicate evaluation other than
435 // `==` as the function's test condition.
436 template <typename C1, typename C2, typename BinaryPredicate>
437 bool c_is_permutation(const C1& c1, const C2& c2, BinaryPredicate&& pred) {
438  using std::begin;
439  using std::end;
440  return c1.size() == c2.size() &&
441  std::is_permutation(begin(c1), end(c1), begin(c2),
442  std::forward<BinaryPredicate>(pred));
443 }
444 
445 // c_search()
446 //
447 // Container-based version of the <algorithm> `std::search()` function to search
448 // a container for a subsequence.
449 template <typename Sequence1, typename Sequence2>
451  Sequence1& sequence, Sequence2& subsequence) {
456 }
457 
458 // Overload of c_search() for using a predicate evaluation other than
459 // `==` as the function's test condition.
460 template <typename Sequence1, typename Sequence2, typename BinaryPredicate>
462  Sequence1& sequence, Sequence2& subsequence, BinaryPredicate&& pred) {
467  std::forward<BinaryPredicate>(pred));
468 }
469 
470 // c_search_n()
471 //
472 // Container-based version of the <algorithm> `std::search_n()` function to
473 // search a container for the first sequence of N elements.
474 template <typename Sequence, typename Size, typename T>
476  Sequence& sequence, Size count, T&& value) {
477  return std::search_n(container_algorithm_internal::c_begin(sequence),
479  std::forward<T>(value));
480 }
481 
482 // Overload of c_search_n() for using a predicate evaluation other than
483 // `==` as the function's test condition.
484 template <typename Sequence, typename Size, typename T,
485  typename BinaryPredicate>
487  Sequence& sequence, Size count, T&& value, BinaryPredicate&& pred) {
488  return std::search_n(container_algorithm_internal::c_begin(sequence),
490  std::forward<T>(value),
491  std::forward<BinaryPredicate>(pred));
492 }
493 
494 //------------------------------------------------------------------------------
495 // <algorithm> Modifying sequence operations
496 //------------------------------------------------------------------------------
497 
498 // c_copy()
499 //
500 // Container-based version of the <algorithm> `std::copy()` function to copy a
501 // container's elements into an iterator.
502 template <typename InputSequence, typename OutputIterator>
503 OutputIterator c_copy(const InputSequence& input, OutputIterator output) {
506 }
507 
508 // c_copy_n()
509 //
510 // Container-based version of the <algorithm> `std::copy_n()` function to copy a
511 // container's first N elements into an iterator.
512 template <typename C, typename Size, typename OutputIterator>
513 OutputIterator c_copy_n(const C& input, Size n, OutputIterator output) {
514  return std::copy_n(container_algorithm_internal::c_begin(input), n, output);
515 }
516 
517 // c_copy_if()
518 //
519 // Container-based version of the <algorithm> `std::copy_if()` function to copy
520 // a container's elements satisfying some condition into an iterator.
521 template <typename InputSequence, typename OutputIterator, typename Pred>
522 OutputIterator c_copy_if(const InputSequence& input, OutputIterator output,
523  Pred&& pred) {
524  return std::copy_if(container_algorithm_internal::c_begin(input),
526  std::forward<Pred>(pred));
527 }
528 
529 // c_copy_backward()
530 //
531 // Container-based version of the <algorithm> `std::copy_backward()` function to
532 // copy a container's elements in reverse order into an iterator.
533 template <typename C, typename BidirectionalIterator>
534 BidirectionalIterator c_copy_backward(const C& src,
535  BidirectionalIterator dest) {
536  return std::copy_backward(container_algorithm_internal::c_begin(src),
538 }
539 
540 // c_move()
541 //
542 // Container-based version of the <algorithm> `std::move()` function to move
543 // a container's elements into an iterator.
544 template <typename C, typename OutputIterator>
545 OutputIterator c_move(C&& src, OutputIterator dest) {
548 }
549 
550 // c_move_backward()
551 //
552 // Container-based version of the <algorithm> `std::move_backward()` function to
553 // move a container's elements into an iterator in reverse order.
554 template <typename C, typename BidirectionalIterator>
555 BidirectionalIterator c_move_backward(C&& src, BidirectionalIterator dest) {
556  return std::move_backward(container_algorithm_internal::c_begin(src),
558 }
559 
560 // c_swap_ranges()
561 //
562 // Container-based version of the <algorithm> `std::swap_ranges()` function to
563 // swap a container's elements with another container's elements. Swaps the
564 // first N elements of `c1` and `c2`, where N = min(size(c1), size(c2)).
565 template <typename C1, typename C2>
571 
572  using std::swap;
573  for (; first1 != last1 && first2 != last2; ++first1, (void)++first2) {
574  swap(*first1, *first2);
575  }
576  return first2;
577 }
578 
579 // c_transform()
580 //
581 // Container-based version of the <algorithm> `std::transform()` function to
582 // transform a container's elements using the unary operation, storing the
583 // result in an iterator pointing to the last transformed element in the output
584 // range.
585 template <typename InputSequence, typename OutputIterator, typename UnaryOp>
586 OutputIterator c_transform(const InputSequence& input, OutputIterator output,
587  UnaryOp&& unary_op) {
588  return std::transform(container_algorithm_internal::c_begin(input),
590  std::forward<UnaryOp>(unary_op));
591 }
592 
593 // Overload of c_transform() for performing a transformation using a binary
594 // predicate. Applies `binary_op` to the first N elements of `c1` and `c2`,
595 // where N = min(size(c1), size(c2)).
596 template <typename InputSequence1, typename InputSequence2,
597  typename OutputIterator, typename BinaryOp>
598 OutputIterator c_transform(const InputSequence1& input1,
599  const InputSequence2& input2, OutputIterator output,
600  BinaryOp&& binary_op) {
601  auto first1 = container_algorithm_internal::c_begin(input1);
602  auto last1 = container_algorithm_internal::c_end(input1);
603  auto first2 = container_algorithm_internal::c_begin(input2);
604  auto last2 = container_algorithm_internal::c_end(input2);
605  for (; first1 != last1 && first2 != last2;
606  ++first1, (void)++first2, ++output) {
607  *output = binary_op(*first1, *first2);
608  }
609 
610  return output;
611 }
612 
613 // c_replace()
614 //
615 // Container-based version of the <algorithm> `std::replace()` function to
616 // replace a container's elements of some value with a new value. The container
617 // is modified in place.
618 template <typename Sequence, typename T>
619 void c_replace(Sequence& sequence, const T& old_value, const T& new_value) {
620  std::replace(container_algorithm_internal::c_begin(sequence),
622  new_value);
623 }
624 
625 // c_replace_if()
626 //
627 // Container-based version of the <algorithm> `std::replace_if()` function to
628 // replace a container's elements of some value with a new value based on some
629 // condition. The container is modified in place.
630 template <typename C, typename Pred, typename T>
631 void c_replace_if(C& c, Pred&& pred, T&& new_value) {
632  std::replace_if(container_algorithm_internal::c_begin(c),
634  std::forward<Pred>(pred), std::forward<T>(new_value));
635 }
636 
637 // c_replace_copy()
638 //
639 // Container-based version of the <algorithm> `std::replace_copy()` function to
640 // replace a container's elements of some value with a new value and return the
641 // results within an iterator.
642 template <typename C, typename OutputIterator, typename T>
643 OutputIterator c_replace_copy(const C& c, OutputIterator result, T&& old_value,
644  T&& new_value) {
645  return std::replace_copy(container_algorithm_internal::c_begin(c),
647  std::forward<T>(old_value),
648  std::forward<T>(new_value));
649 }
650 
651 // c_replace_copy_if()
652 //
653 // Container-based version of the <algorithm> `std::replace_copy_if()` function
654 // to replace a container's elements of some value with a new value based on
655 // some condition, and return the results within an iterator.
656 template <typename C, typename OutputIterator, typename Pred, typename T>
657 OutputIterator c_replace_copy_if(const C& c, OutputIterator result, Pred&& pred,
658  T&& new_value) {
659  return std::replace_copy_if(container_algorithm_internal::c_begin(c),
661  std::forward<Pred>(pred),
662  std::forward<T>(new_value));
663 }
664 
665 // c_fill()
666 //
667 // Container-based version of the <algorithm> `std::fill()` function to fill a
668 // container with some value.
669 template <typename C, typename T>
670 void c_fill(C& c, T&& value) {
672  container_algorithm_internal::c_end(c), std::forward<T>(value));
673 }
674 
675 // c_fill_n()
676 //
677 // Container-based version of the <algorithm> `std::fill_n()` function to fill
678 // the first N elements in a container with some value.
679 template <typename C, typename Size, typename T>
680 void c_fill_n(C& c, Size n, T&& value) {
682  std::forward<T>(value));
683 }
684 
685 // c_generate()
686 //
687 // Container-based version of the <algorithm> `std::generate()` function to
688 // assign a container's elements to the values provided by the given generator.
689 template <typename C, typename Generator>
690 void c_generate(C& c, Generator&& gen) {
693  std::forward<Generator>(gen));
694 }
695 
696 // c_generate_n()
697 //
698 // Container-based version of the <algorithm> `std::generate_n()` function to
699 // assign a container's first N elements to the values provided by the given
700 // generator.
701 template <typename C, typename Size, typename Generator>
703  Generator&& gen) {
704  return std::generate_n(container_algorithm_internal::c_begin(c), n,
705  std::forward<Generator>(gen));
706 }
707 
708 // Note: `c_xx()` <algorithm> container versions for `remove()`, `remove_if()`,
709 // and `unique()` are omitted, because it's not clear whether or not such
710 // functions should call erase on their supplied sequences afterwards. Either
711 // behavior would be surprising for a different set of users.
712 
713 // c_remove_copy()
714 //
715 // Container-based version of the <algorithm> `std::remove_copy()` function to
716 // copy a container's elements while removing any elements matching the given
717 // `value`.
718 template <typename C, typename OutputIterator, typename T>
719 OutputIterator c_remove_copy(const C& c, OutputIterator result, T&& value) {
720  return std::remove_copy(container_algorithm_internal::c_begin(c),
722  std::forward<T>(value));
723 }
724 
725 // c_remove_copy_if()
726 //
727 // Container-based version of the <algorithm> `std::remove_copy_if()` function
728 // to copy a container's elements while removing any elements matching the given
729 // condition.
730 template <typename C, typename OutputIterator, typename Pred>
731 OutputIterator c_remove_copy_if(const C& c, OutputIterator result,
732  Pred&& pred) {
733  return std::remove_copy_if(container_algorithm_internal::c_begin(c),
735  std::forward<Pred>(pred));
736 }
737 
738 // c_unique_copy()
739 //
740 // Container-based version of the <algorithm> `std::unique_copy()` function to
741 // copy a container's elements while removing any elements containing duplicate
742 // values.
743 template <typename C, typename OutputIterator>
744 OutputIterator c_unique_copy(const C& c, OutputIterator result) {
745  return std::unique_copy(container_algorithm_internal::c_begin(c),
747 }
748 
749 // Overload of c_unique_copy() for using a predicate evaluation other than
750 // `==` for comparing uniqueness of the element values.
751 template <typename C, typename OutputIterator, typename BinaryPredicate>
752 OutputIterator c_unique_copy(const C& c, OutputIterator result,
753  BinaryPredicate&& pred) {
754  return std::unique_copy(container_algorithm_internal::c_begin(c),
756  std::forward<BinaryPredicate>(pred));
757 }
758 
759 // c_reverse()
760 //
761 // Container-based version of the <algorithm> `std::reverse()` function to
762 // reverse a container's elements.
763 template <typename Sequence>
764 void c_reverse(Sequence& sequence) {
767 }
768 
769 // c_reverse_copy()
770 //
771 // Container-based version of the <algorithm> `std::reverse()` function to
772 // reverse a container's elements and write them to an iterator range.
773 template <typename C, typename OutputIterator>
774 OutputIterator c_reverse_copy(const C& sequence, OutputIterator result) {
775  return std::reverse_copy(container_algorithm_internal::c_begin(sequence),
777  result);
778 }
779 
780 // c_rotate()
781 //
782 // Container-based version of the <algorithm> `std::rotate()` function to
783 // shift a container's elements leftward such that the `middle` element becomes
784 // the first element in the container.
785 template <typename C,
786  typename Iterator = container_algorithm_internal::ContainerIter<C>>
787 Iterator c_rotate(C& sequence, Iterator middle) {
788  return absl::rotate(container_algorithm_internal::c_begin(sequence), middle,
790 }
791 
792 // c_rotate_copy()
793 //
794 // Container-based version of the <algorithm> `std::rotate_copy()` function to
795 // shift a container's elements leftward such that the `middle` element becomes
796 // the first element in a new iterator range.
797 template <typename C, typename OutputIterator>
798 OutputIterator c_rotate_copy(
799  const C& sequence,
801  OutputIterator result) {
802  return std::rotate_copy(container_algorithm_internal::c_begin(sequence),
803  middle, container_algorithm_internal::c_end(sequence),
804  result);
805 }
806 
807 // c_shuffle()
808 //
809 // Container-based version of the <algorithm> `std::shuffle()` function to
810 // randomly shuffle elements within the container using a `gen()` uniform random
811 // number generator.
812 template <typename RandomAccessContainer, typename UniformRandomBitGenerator>
813 void c_shuffle(RandomAccessContainer& c, UniformRandomBitGenerator&& gen) {
816  std::forward<UniformRandomBitGenerator>(gen));
817 }
818 
819 //------------------------------------------------------------------------------
820 // <algorithm> Partition functions
821 //------------------------------------------------------------------------------
822 
823 // c_is_partitioned()
824 //
825 // Container-based version of the <algorithm> `std::is_partitioned()` function
826 // to test whether all elements in the container for which `pred` returns `true`
827 // precede those for which `pred` is `false`.
828 template <typename C, typename Pred>
829 bool c_is_partitioned(const C& c, Pred&& pred) {
830  return std::is_partitioned(container_algorithm_internal::c_begin(c),
832  std::forward<Pred>(pred));
833 }
834 
835 // c_partition()
836 //
837 // Container-based version of the <algorithm> `std::partition()` function
838 // to rearrange all elements in a container in such a way that all elements for
839 // which `pred` returns `true` precede all those for which it returns `false`,
840 // returning an iterator to the first element of the second group.
841 template <typename C, typename Pred>
843  return std::partition(container_algorithm_internal::c_begin(c),
845  std::forward<Pred>(pred));
846 }
847 
848 // c_stable_partition()
849 //
850 // Container-based version of the <algorithm> `std::stable_partition()` function
851 // to rearrange all elements in a container in such a way that all elements for
852 // which `pred` returns `true` precede all those for which it returns `false`,
853 // preserving the relative ordering between the two groups. The function returns
854 // an iterator to the first element of the second group.
855 template <typename C, typename Pred>
857  Pred&& pred) {
858  return std::stable_partition(container_algorithm_internal::c_begin(c),
860  std::forward<Pred>(pred));
861 }
862 
863 // c_partition_copy()
864 //
865 // Container-based version of the <algorithm> `std::partition_copy()` function
866 // to partition a container's elements and return them into two iterators: one
867 // for which `pred` returns `true`, and one for which `pred` returns `false.`
868 
869 template <typename C, typename OutputIterator1, typename OutputIterator2,
870  typename Pred>
871 std::pair<OutputIterator1, OutputIterator2> c_partition_copy(
872  const C& c, OutputIterator1 out_true, OutputIterator2 out_false,
873  Pred&& pred) {
874  return std::partition_copy(container_algorithm_internal::c_begin(c),
876  out_false, std::forward<Pred>(pred));
877 }
878 
879 // c_partition_point()
880 //
881 // Container-based version of the <algorithm> `std::partition_point()` function
882 // to return the first element of an already partitioned container for which
883 // the given `pred` is not `true`.
884 template <typename C, typename Pred>
886  Pred&& pred) {
887  return std::partition_point(container_algorithm_internal::c_begin(c),
889  std::forward<Pred>(pred));
890 }
891 
892 //------------------------------------------------------------------------------
893 // <algorithm> Sorting functions
894 //------------------------------------------------------------------------------
895 
896 // c_sort()
897 //
898 // Container-based version of the <algorithm> `std::sort()` function
899 // to sort elements in ascending order of their values.
900 template <typename C>
901 void c_sort(C& c) {
904 }
905 
906 // Overload of c_sort() for performing a `comp` comparison other than the
907 // default `operator<`.
908 template <typename C, typename LessThan>
909 void c_sort(C& c, LessThan&& comp) {
912  std::forward<LessThan>(comp));
913 }
914 
915 // c_stable_sort()
916 //
917 // Container-based version of the <algorithm> `std::stable_sort()` function
918 // to sort elements in ascending order of their values, preserving the order
919 // of equivalents.
920 template <typename C>
921 void c_stable_sort(C& c) {
922  std::stable_sort(container_algorithm_internal::c_begin(c),
924 }
925 
926 // Overload of c_stable_sort() for performing a `comp` comparison other than the
927 // default `operator<`.
928 template <typename C, typename LessThan>
929 void c_stable_sort(C& c, LessThan&& comp) {
930  std::stable_sort(container_algorithm_internal::c_begin(c),
932  std::forward<LessThan>(comp));
933 }
934 
935 // c_is_sorted()
936 //
937 // Container-based version of the <algorithm> `std::is_sorted()` function
938 // to evaluate whether the given container is sorted in ascending order.
939 template <typename C>
940 bool c_is_sorted(const C& c) {
941  return std::is_sorted(container_algorithm_internal::c_begin(c),
943 }
944 
945 // c_is_sorted() overload for performing a `comp` comparison other than the
946 // default `operator<`.
947 template <typename C, typename LessThan>
948 bool c_is_sorted(const C& c, LessThan&& comp) {
949  return std::is_sorted(container_algorithm_internal::c_begin(c),
951  std::forward<LessThan>(comp));
952 }
953 
954 // c_partial_sort()
955 //
956 // Container-based version of the <algorithm> `std::partial_sort()` function
957 // to rearrange elements within a container such that elements before `middle`
958 // are sorted in ascending order.
959 template <typename RandomAccessContainer>
961  RandomAccessContainer& sequence,
963  std::partial_sort(container_algorithm_internal::c_begin(sequence), middle,
965 }
966 
967 // Overload of c_partial_sort() for performing a `comp` comparison other than
968 // the default `operator<`.
969 template <typename RandomAccessContainer, typename LessThan>
971  RandomAccessContainer& sequence,
973  LessThan&& comp) {
974  std::partial_sort(container_algorithm_internal::c_begin(sequence), middle,
976  std::forward<LessThan>(comp));
977 }
978 
979 // c_partial_sort_copy()
980 //
981 // Container-based version of the <algorithm> `std::partial_sort_copy()`
982 // function to sort the elements in the given range `result` within the larger
983 // `sequence` in ascending order (and using `result` as the output parameter).
984 // At most min(result.last - result.first, sequence.last - sequence.first)
985 // elements from the sequence will be stored in the result.
986 template <typename C, typename RandomAccessContainer>
987 container_algorithm_internal::ContainerIter<RandomAccessContainer>
988 c_partial_sort_copy(const C& sequence, RandomAccessContainer& result) {
989  return std::partial_sort_copy(container_algorithm_internal::c_begin(sequence),
993 }
994 
995 // Overload of c_partial_sort_copy() for performing a `comp` comparison other
996 // than the default `operator<`.
997 template <typename C, typename RandomAccessContainer, typename LessThan>
998 container_algorithm_internal::ContainerIter<RandomAccessContainer>
999 c_partial_sort_copy(const C& sequence, RandomAccessContainer& result,
1000  LessThan&& comp) {
1001  return std::partial_sort_copy(container_algorithm_internal::c_begin(sequence),
1005  std::forward<LessThan>(comp));
1006 }
1007 
1008 // c_is_sorted_until()
1009 //
1010 // Container-based version of the <algorithm> `std::is_sorted_until()` function
1011 // to return the first element within a container that is not sorted in
1012 // ascending order as an iterator.
1013 template <typename C>
1015  return std::is_sorted_until(container_algorithm_internal::c_begin(c),
1017 }
1018 
1019 // Overload of c_is_sorted_until() for performing a `comp` comparison other than
1020 // the default `operator<`.
1021 template <typename C, typename LessThan>
1023  C& c, LessThan&& comp) {
1024  return std::is_sorted_until(container_algorithm_internal::c_begin(c),
1026  std::forward<LessThan>(comp));
1027 }
1028 
1029 // c_nth_element()
1030 //
1031 // Container-based version of the <algorithm> `std::nth_element()` function
1032 // to rearrange the elements within a container such that the `nth` element
1033 // would be in that position in an ordered sequence; other elements may be in
1034 // any order, except that all preceding `nth` will be less than that element,
1035 // and all following `nth` will be greater than that element.
1036 template <typename RandomAccessContainer>
1038  RandomAccessContainer& sequence,
1040  std::nth_element(container_algorithm_internal::c_begin(sequence), nth,
1042 }
1043 
1044 // Overload of c_nth_element() for performing a `comp` comparison other than
1045 // the default `operator<`.
1046 template <typename RandomAccessContainer, typename LessThan>
1048  RandomAccessContainer& sequence,
1050  LessThan&& comp) {
1051  std::nth_element(container_algorithm_internal::c_begin(sequence), nth,
1053  std::forward<LessThan>(comp));
1054 }
1055 
1056 //------------------------------------------------------------------------------
1057 // <algorithm> Binary Search
1058 //------------------------------------------------------------------------------
1059 
1060 // c_lower_bound()
1061 //
1062 // Container-based version of the <algorithm> `std::lower_bound()` function
1063 // to return an iterator pointing to the first element in a sorted container
1064 // which does not compare less than `value`.
1065 template <typename Sequence, typename T>
1067  Sequence& sequence, T&& value) {
1068  return std::lower_bound(container_algorithm_internal::c_begin(sequence),
1070  std::forward<T>(value));
1071 }
1072 
1073 // Overload of c_lower_bound() for performing a `comp` comparison other than
1074 // the default `operator<`.
1075 template <typename Sequence, typename T, typename LessThan>
1077  Sequence& sequence, T&& value, LessThan&& comp) {
1078  return std::lower_bound(container_algorithm_internal::c_begin(sequence),
1080  std::forward<T>(value), std::forward<LessThan>(comp));
1081 }
1082 
1083 // c_upper_bound()
1084 //
1085 // Container-based version of the <algorithm> `std::upper_bound()` function
1086 // to return an iterator pointing to the first element in a sorted container
1087 // which is greater than `value`.
1088 template <typename Sequence, typename T>
1090  Sequence& sequence, T&& value) {
1091  return std::upper_bound(container_algorithm_internal::c_begin(sequence),
1093  std::forward<T>(value));
1094 }
1095 
1096 // Overload of c_upper_bound() for performing a `comp` comparison other than
1097 // the default `operator<`.
1098 template <typename Sequence, typename T, typename LessThan>
1100  Sequence& sequence, T&& value, LessThan&& comp) {
1101  return std::upper_bound(container_algorithm_internal::c_begin(sequence),
1103  std::forward<T>(value), std::forward<LessThan>(comp));
1104 }
1105 
1106 // c_equal_range()
1107 //
1108 // Container-based version of the <algorithm> `std::equal_range()` function
1109 // to return an iterator pair pointing to the first and last elements in a
1110 // sorted container which compare equal to `value`.
1111 template <typename Sequence, typename T>
1112 container_algorithm_internal::ContainerIterPairType<Sequence, Sequence>
1113 c_equal_range(Sequence& sequence, T&& value) {
1114  return std::equal_range(container_algorithm_internal::c_begin(sequence),
1116  std::forward<T>(value));
1117 }
1118 
1119 // Overload of c_equal_range() for performing a `comp` comparison other than
1120 // the default `operator<`.
1121 template <typename Sequence, typename T, typename LessThan>
1122 container_algorithm_internal::ContainerIterPairType<Sequence, Sequence>
1123 c_equal_range(Sequence& sequence, T&& value, LessThan&& comp) {
1124  return std::equal_range(container_algorithm_internal::c_begin(sequence),
1126  std::forward<T>(value), std::forward<LessThan>(comp));
1127 }
1128 
1129 // c_binary_search()
1130 //
1131 // Container-based version of the <algorithm> `std::binary_search()` function
1132 // to test if any element in the sorted container contains a value equivalent to
1133 // 'value'.
1134 template <typename Sequence, typename T>
1135 bool c_binary_search(Sequence&& sequence, T&& value) {
1136  return std::binary_search(container_algorithm_internal::c_begin(sequence),
1138  std::forward<T>(value));
1139 }
1140 
1141 // Overload of c_binary_search() for performing a `comp` comparison other than
1142 // the default `operator<`.
1143 template <typename Sequence, typename T, typename LessThan>
1144 bool c_binary_search(Sequence&& sequence, T&& value, LessThan&& comp) {
1145  return std::binary_search(container_algorithm_internal::c_begin(sequence),
1147  std::forward<T>(value),
1148  std::forward<LessThan>(comp));
1149 }
1150 
1151 //------------------------------------------------------------------------------
1152 // <algorithm> Merge functions
1153 //------------------------------------------------------------------------------
1154 
1155 // c_merge()
1156 //
1157 // Container-based version of the <algorithm> `std::merge()` function
1158 // to merge two sorted containers into a single sorted iterator.
1159 template <typename C1, typename C2, typename OutputIterator>
1160 OutputIterator c_merge(const C1& c1, const C2& c2, OutputIterator result) {
1165 }
1166 
1167 // Overload of c_merge() for performing a `comp` comparison other than
1168 // the default `operator<`.
1169 template <typename C1, typename C2, typename OutputIterator, typename LessThan>
1170 OutputIterator c_merge(const C1& c1, const C2& c2, OutputIterator result,
1171  LessThan&& comp) {
1176  std::forward<LessThan>(comp));
1177 }
1178 
1179 // c_inplace_merge()
1180 //
1181 // Container-based version of the <algorithm> `std::inplace_merge()` function
1182 // to merge a supplied iterator `middle` into a container.
1183 template <typename C>
1186  std::inplace_merge(container_algorithm_internal::c_begin(c), middle,
1188 }
1189 
1190 // Overload of c_inplace_merge() for performing a merge using a `comp` other
1191 // than `operator<`.
1192 template <typename C, typename LessThan>
1195  LessThan&& comp) {
1196  std::inplace_merge(container_algorithm_internal::c_begin(c), middle,
1198  std::forward<LessThan>(comp));
1199 }
1200 
1201 // c_includes()
1202 //
1203 // Container-based version of the <algorithm> `std::includes()` function
1204 // to test whether a sorted container `c1` entirely contains another sorted
1205 // container `c2`.
1206 template <typename C1, typename C2>
1207 bool c_includes(const C1& c1, const C2& c2) {
1208  return std::includes(container_algorithm_internal::c_begin(c1),
1212 }
1213 
1214 // Overload of c_includes() for performing a merge using a `comp` other than
1215 // `operator<`.
1216 template <typename C1, typename C2, typename LessThan>
1217 bool c_includes(const C1& c1, const C2& c2, LessThan&& comp) {
1218  return std::includes(container_algorithm_internal::c_begin(c1),
1222  std::forward<LessThan>(comp));
1223 }
1224 
1225 // c_set_union()
1226 //
1227 // Container-based version of the <algorithm> `std::set_union()` function
1228 // to return an iterator containing the union of two containers; duplicate
1229 // values are not copied into the output.
1230 template <typename C1, typename C2, typename OutputIterator,
1231  typename = typename std::enable_if<
1233  void>::type,
1234  typename = typename std::enable_if<
1236  void>::type>
1237 OutputIterator c_set_union(const C1& c1, const C2& c2, OutputIterator output) {
1238  return std::set_union(container_algorithm_internal::c_begin(c1),
1242 }
1243 
1244 // Overload of c_set_union() for performing a merge using a `comp` other than
1245 // `operator<`.
1246 template <typename C1, typename C2, typename OutputIterator, typename LessThan,
1247  typename = typename std::enable_if<
1249  void>::type,
1250  typename = typename std::enable_if<
1252  void>::type>
1253 OutputIterator c_set_union(const C1& c1, const C2& c2, OutputIterator output,
1254  LessThan&& comp) {
1255  return std::set_union(container_algorithm_internal::c_begin(c1),
1259  std::forward<LessThan>(comp));
1260 }
1261 
1262 // c_set_intersection()
1263 //
1264 // Container-based version of the <algorithm> `std::set_intersection()` function
1265 // to return an iterator containing the intersection of two sorted containers.
1266 template <typename C1, typename C2, typename OutputIterator,
1267  typename = typename std::enable_if<
1269  void>::type,
1270  typename = typename std::enable_if<
1272  void>::type>
1273 OutputIterator c_set_intersection(const C1& c1, const C2& c2,
1274  OutputIterator output) {
1275  // In debug builds, ensure that both containers are sorted with respect to the
1276  // default comparator. std::set_intersection requires the containers be sorted
1277  // using operator<.
1278  assert(absl::c_is_sorted(c1));
1279  assert(absl::c_is_sorted(c2));
1280  return std::set_intersection(container_algorithm_internal::c_begin(c1),
1284 }
1285 
1286 // Overload of c_set_intersection() for performing a merge using a `comp` other
1287 // than `operator<`.
1288 template <typename C1, typename C2, typename OutputIterator, typename LessThan,
1289  typename = typename std::enable_if<
1291  void>::type,
1292  typename = typename std::enable_if<
1294  void>::type>
1295 OutputIterator c_set_intersection(const C1& c1, const C2& c2,
1296  OutputIterator output, LessThan&& comp) {
1297  // In debug builds, ensure that both containers are sorted with respect to the
1298  // default comparator. std::set_intersection requires the containers be sorted
1299  // using the same comparator.
1300  assert(absl::c_is_sorted(c1, comp));
1301  assert(absl::c_is_sorted(c2, comp));
1302  return std::set_intersection(container_algorithm_internal::c_begin(c1),
1306  std::forward<LessThan>(comp));
1307 }
1308 
1309 // c_set_difference()
1310 //
1311 // Container-based version of the <algorithm> `std::set_difference()` function
1312 // to return an iterator containing elements present in the first container but
1313 // not in the second.
1314 template <typename C1, typename C2, typename OutputIterator,
1315  typename = typename std::enable_if<
1317  void>::type,
1318  typename = typename std::enable_if<
1320  void>::type>
1321 OutputIterator c_set_difference(const C1& c1, const C2& c2,
1322  OutputIterator output) {
1323  return std::set_difference(container_algorithm_internal::c_begin(c1),
1327 }
1328 
1329 // Overload of c_set_difference() for performing a merge using a `comp` other
1330 // than `operator<`.
1331 template <typename C1, typename C2, typename OutputIterator, typename LessThan,
1332  typename = typename std::enable_if<
1334  void>::type,
1335  typename = typename std::enable_if<
1337  void>::type>
1338 OutputIterator c_set_difference(const C1& c1, const C2& c2,
1339  OutputIterator output, LessThan&& comp) {
1340  return std::set_difference(container_algorithm_internal::c_begin(c1),
1344  std::forward<LessThan>(comp));
1345 }
1346 
1347 // c_set_symmetric_difference()
1348 //
1349 // Container-based version of the <algorithm> `std::set_symmetric_difference()`
1350 // function to return an iterator containing elements present in either one
1351 // container or the other, but not both.
1352 template <typename C1, typename C2, typename OutputIterator,
1353  typename = typename std::enable_if<
1355  void>::type,
1356  typename = typename std::enable_if<
1358  void>::type>
1359 OutputIterator c_set_symmetric_difference(const C1& c1, const C2& c2,
1360  OutputIterator output) {
1361  return std::set_symmetric_difference(
1366 }
1367 
1368 // Overload of c_set_symmetric_difference() for performing a merge using a
1369 // `comp` other than `operator<`.
1370 template <typename C1, typename C2, typename OutputIterator, typename LessThan,
1371  typename = typename std::enable_if<
1373  void>::type,
1374  typename = typename std::enable_if<
1376  void>::type>
1377 OutputIterator c_set_symmetric_difference(const C1& c1, const C2& c2,
1378  OutputIterator output,
1379  LessThan&& comp) {
1380  return std::set_symmetric_difference(
1385  std::forward<LessThan>(comp));
1386 }
1387 
1388 //------------------------------------------------------------------------------
1389 // <algorithm> Heap functions
1390 //------------------------------------------------------------------------------
1391 
1392 // c_push_heap()
1393 //
1394 // Container-based version of the <algorithm> `std::push_heap()` function
1395 // to push a value onto a container heap.
1396 template <typename RandomAccessContainer>
1397 void c_push_heap(RandomAccessContainer& sequence) {
1398  std::push_heap(container_algorithm_internal::c_begin(sequence),
1400 }
1401 
1402 // Overload of c_push_heap() for performing a push operation on a heap using a
1403 // `comp` other than `operator<`.
1404 template <typename RandomAccessContainer, typename LessThan>
1405 void c_push_heap(RandomAccessContainer& sequence, LessThan&& comp) {
1406  std::push_heap(container_algorithm_internal::c_begin(sequence),
1408  std::forward<LessThan>(comp));
1409 }
1410 
1411 // c_pop_heap()
1412 //
1413 // Container-based version of the <algorithm> `std::pop_heap()` function
1414 // to pop a value from a heap container.
1415 template <typename RandomAccessContainer>
1416 void c_pop_heap(RandomAccessContainer& sequence) {
1417  std::pop_heap(container_algorithm_internal::c_begin(sequence),
1419 }
1420 
1421 // Overload of c_pop_heap() for performing a pop operation on a heap using a
1422 // `comp` other than `operator<`.
1423 template <typename RandomAccessContainer, typename LessThan>
1424 void c_pop_heap(RandomAccessContainer& sequence, LessThan&& comp) {
1425  std::pop_heap(container_algorithm_internal::c_begin(sequence),
1427  std::forward<LessThan>(comp));
1428 }
1429 
1430 // c_make_heap()
1431 //
1432 // Container-based version of the <algorithm> `std::make_heap()` function
1433 // to make a container a heap.
1434 template <typename RandomAccessContainer>
1435 void c_make_heap(RandomAccessContainer& sequence) {
1436  std::make_heap(container_algorithm_internal::c_begin(sequence),
1438 }
1439 
1440 // Overload of c_make_heap() for performing heap comparisons using a
1441 // `comp` other than `operator<`
1442 template <typename RandomAccessContainer, typename LessThan>
1443 void c_make_heap(RandomAccessContainer& sequence, LessThan&& comp) {
1444  std::make_heap(container_algorithm_internal::c_begin(sequence),
1446  std::forward<LessThan>(comp));
1447 }
1448 
1449 // c_sort_heap()
1450 //
1451 // Container-based version of the <algorithm> `std::sort_heap()` function
1452 // to sort a heap into ascending order (after which it is no longer a heap).
1453 template <typename RandomAccessContainer>
1454 void c_sort_heap(RandomAccessContainer& sequence) {
1455  std::sort_heap(container_algorithm_internal::c_begin(sequence),
1457 }
1458 
1459 // Overload of c_sort_heap() for performing heap comparisons using a
1460 // `comp` other than `operator<`
1461 template <typename RandomAccessContainer, typename LessThan>
1462 void c_sort_heap(RandomAccessContainer& sequence, LessThan&& comp) {
1463  std::sort_heap(container_algorithm_internal::c_begin(sequence),
1465  std::forward<LessThan>(comp));
1466 }
1467 
1468 // c_is_heap()
1469 //
1470 // Container-based version of the <algorithm> `std::is_heap()` function
1471 // to check whether the given container is a heap.
1472 template <typename RandomAccessContainer>
1473 bool c_is_heap(const RandomAccessContainer& sequence) {
1474  return std::is_heap(container_algorithm_internal::c_begin(sequence),
1476 }
1477 
1478 // Overload of c_is_heap() for performing heap comparisons using a
1479 // `comp` other than `operator<`
1480 template <typename RandomAccessContainer, typename LessThan>
1481 bool c_is_heap(const RandomAccessContainer& sequence, LessThan&& comp) {
1482  return std::is_heap(container_algorithm_internal::c_begin(sequence),
1484  std::forward<LessThan>(comp));
1485 }
1486 
1487 // c_is_heap_until()
1488 //
1489 // Container-based version of the <algorithm> `std::is_heap_until()` function
1490 // to find the first element in a given container which is not in heap order.
1491 template <typename RandomAccessContainer>
1492 container_algorithm_internal::ContainerIter<RandomAccessContainer>
1493 c_is_heap_until(RandomAccessContainer& sequence) {
1494  return std::is_heap_until(container_algorithm_internal::c_begin(sequence),
1496 }
1497 
1498 // Overload of c_is_heap_until() for performing heap comparisons using a
1499 // `comp` other than `operator<`
1500 template <typename RandomAccessContainer, typename LessThan>
1501 container_algorithm_internal::ContainerIter<RandomAccessContainer>
1502 c_is_heap_until(RandomAccessContainer& sequence, LessThan&& comp) {
1503  return std::is_heap_until(container_algorithm_internal::c_begin(sequence),
1505  std::forward<LessThan>(comp));
1506 }
1507 
1508 //------------------------------------------------------------------------------
1509 // <algorithm> Min/max
1510 //------------------------------------------------------------------------------
1511 
1512 // c_min_element()
1513 //
1514 // Container-based version of the <algorithm> `std::min_element()` function
1515 // to return an iterator pointing to the element with the smallest value, using
1516 // `operator<` to make the comparisons.
1517 template <typename Sequence>
1519  Sequence& sequence) {
1520  return std::min_element(container_algorithm_internal::c_begin(sequence),
1522 }
1523 
1524 // Overload of c_min_element() for performing a `comp` comparison other than
1525 // `operator<`.
1526 template <typename Sequence, typename LessThan>
1528  Sequence& sequence, LessThan&& comp) {
1529  return std::min_element(container_algorithm_internal::c_begin(sequence),
1531  std::forward<LessThan>(comp));
1532 }
1533 
1534 // c_max_element()
1535 //
1536 // Container-based version of the <algorithm> `std::max_element()` function
1537 // to return an iterator pointing to the element with the largest value, using
1538 // `operator<` to make the comparisons.
1539 template <typename Sequence>
1541  Sequence& sequence) {
1542  return std::max_element(container_algorithm_internal::c_begin(sequence),
1544 }
1545 
1546 // Overload of c_max_element() for performing a `comp` comparison other than
1547 // `operator<`.
1548 template <typename Sequence, typename LessThan>
1550  Sequence& sequence, LessThan&& comp) {
1551  return std::max_element(container_algorithm_internal::c_begin(sequence),
1553  std::forward<LessThan>(comp));
1554 }
1555 
1556 // c_minmax_element()
1557 //
1558 // Container-based version of the <algorithm> `std::minmax_element()` function
1559 // to return a pair of iterators pointing to the elements containing the
1560 // smallest and largest values, respectively, using `operator<` to make the
1561 // comparisons.
1562 template <typename C>
1563 container_algorithm_internal::ContainerIterPairType<C, C>
1565  return std::minmax_element(container_algorithm_internal::c_begin(c),
1567 }
1568 
1569 // Overload of c_minmax_element() for performing `comp` comparisons other than
1570 // `operator<`.
1571 template <typename C, typename LessThan>
1572 container_algorithm_internal::ContainerIterPairType<C, C>
1573 c_minmax_element(C& c, LessThan&& comp) {
1574  return std::minmax_element(container_algorithm_internal::c_begin(c),
1576  std::forward<LessThan>(comp));
1577 }
1578 
1579 //------------------------------------------------------------------------------
1580 // <algorithm> Lexicographical Comparisons
1581 //------------------------------------------------------------------------------
1582 
1583 // c_lexicographical_compare()
1584 //
1585 // Container-based version of the <algorithm> `std::lexicographical_compare()`
1586 // function to lexicographically compare (e.g. sort words alphabetically) two
1587 // container sequences. The comparison is performed using `operator<`. Note
1588 // that capital letters ("A-Z") have ASCII values less than lowercase letters
1589 // ("a-z").
1590 template <typename Sequence1, typename Sequence2>
1591 bool c_lexicographical_compare(Sequence1&& sequence1, Sequence2&& sequence2) {
1592  return std::lexicographical_compare(
1597 }
1598 
1599 // Overload of c_lexicographical_compare() for performing a lexicographical
1600 // comparison using a `comp` operator instead of `operator<`.
1601 template <typename Sequence1, typename Sequence2, typename LessThan>
1602 bool c_lexicographical_compare(Sequence1&& sequence1, Sequence2&& sequence2,
1603  LessThan&& comp) {
1604  return std::lexicographical_compare(
1609  std::forward<LessThan>(comp));
1610 }
1611 
1612 // c_next_permutation()
1613 //
1614 // Container-based version of the <algorithm> `std::next_permutation()` function
1615 // to rearrange a container's elements into the next lexicographically greater
1616 // permutation.
1617 template <typename C>
1619  return std::next_permutation(container_algorithm_internal::c_begin(c),
1621 }
1622 
1623 // Overload of c_next_permutation() for performing a lexicographical
1624 // comparison using a `comp` operator instead of `operator<`.
1625 template <typename C, typename LessThan>
1626 bool c_next_permutation(C& c, LessThan&& comp) {
1627  return std::next_permutation(container_algorithm_internal::c_begin(c),
1629  std::forward<LessThan>(comp));
1630 }
1631 
1632 // c_prev_permutation()
1633 //
1634 // Container-based version of the <algorithm> `std::prev_permutation()` function
1635 // to rearrange a container's elements into the next lexicographically lesser
1636 // permutation.
1637 template <typename C>
1639  return std::prev_permutation(container_algorithm_internal::c_begin(c),
1641 }
1642 
1643 // Overload of c_prev_permutation() for performing a lexicographical
1644 // comparison using a `comp` operator instead of `operator<`.
1645 template <typename C, typename LessThan>
1646 bool c_prev_permutation(C& c, LessThan&& comp) {
1647  return std::prev_permutation(container_algorithm_internal::c_begin(c),
1649  std::forward<LessThan>(comp));
1650 }
1651 
1652 //------------------------------------------------------------------------------
1653 // <numeric> algorithms
1654 //------------------------------------------------------------------------------
1655 
1656 // c_iota()
1657 //
1658 // Container-based version of the <algorithm> `std::iota()` function
1659 // to compute successive values of `value`, as if incremented with `++value`
1660 // after each element is written. and write them to the container.
1661 template <typename Sequence, typename T>
1662 void c_iota(Sequence& sequence, T&& value) {
1663  std::iota(container_algorithm_internal::c_begin(sequence),
1665  std::forward<T>(value));
1666 }
1667 // c_accumulate()
1668 //
1669 // Container-based version of the <algorithm> `std::accumulate()` function
1670 // to accumulate the element values of a container to `init` and return that
1671 // accumulation by value.
1672 //
1673 // Note: Due to a language technicality this function has return type
1674 // absl::decay_t<T>. As a user of this function you can casually read
1675 // this as "returns T by value" and assume it does the right thing.
1676 template <typename Sequence, typename T>
1677 decay_t<T> c_accumulate(const Sequence& sequence, T&& init) {
1680  std::forward<T>(init));
1681 }
1682 
1683 // Overload of c_accumulate() for using a binary operations other than
1684 // addition for computing the accumulation.
1685 template <typename Sequence, typename T, typename BinaryOp>
1686 decay_t<T> c_accumulate(const Sequence& sequence, T&& init,
1687  BinaryOp&& binary_op) {
1690  std::forward<T>(init),
1691  std::forward<BinaryOp>(binary_op));
1692 }
1693 
1694 // c_inner_product()
1695 //
1696 // Container-based version of the <algorithm> `std::inner_product()` function
1697 // to compute the cumulative inner product of container element pairs.
1698 //
1699 // Note: Due to a language technicality this function has return type
1700 // absl::decay_t<T>. As a user of this function you can casually read
1701 // this as "returns T by value" and assume it does the right thing.
1702 template <typename Sequence1, typename Sequence2, typename T>
1703 decay_t<T> c_inner_product(const Sequence1& factors1, const Sequence2& factors2,
1704  T&& sum) {
1705  return std::inner_product(container_algorithm_internal::c_begin(factors1),
1708  std::forward<T>(sum));
1709 }
1710 
1711 // Overload of c_inner_product() for using binary operations other than
1712 // `operator+` (for computing the accumulation) and `operator*` (for computing
1713 // the product between the two container's element pair).
1714 template <typename Sequence1, typename Sequence2, typename T,
1715  typename BinaryOp1, typename BinaryOp2>
1716 decay_t<T> c_inner_product(const Sequence1& factors1, const Sequence2& factors2,
1717  T&& sum, BinaryOp1&& op1, BinaryOp2&& op2) {
1718  return std::inner_product(container_algorithm_internal::c_begin(factors1),
1721  std::forward<T>(sum), std::forward<BinaryOp1>(op1),
1722  std::forward<BinaryOp2>(op2));
1723 }
1724 
1725 // c_adjacent_difference()
1726 //
1727 // Container-based version of the <algorithm> `std::adjacent_difference()`
1728 // function to compute the difference between each element and the one preceding
1729 // it and write it to an iterator.
1730 template <typename InputSequence, typename OutputIt>
1731 OutputIt c_adjacent_difference(const InputSequence& input,
1732  OutputIt output_first) {
1733  return std::adjacent_difference(container_algorithm_internal::c_begin(input),
1735  output_first);
1736 }
1737 
1738 // Overload of c_adjacent_difference() for using a binary operation other than
1739 // subtraction to compute the adjacent difference.
1740 template <typename InputSequence, typename OutputIt, typename BinaryOp>
1741 OutputIt c_adjacent_difference(const InputSequence& input,
1742  OutputIt output_first, BinaryOp&& op) {
1743  return std::adjacent_difference(container_algorithm_internal::c_begin(input),
1745  output_first, std::forward<BinaryOp>(op));
1746 }
1747 
1748 // c_partial_sum()
1749 //
1750 // Container-based version of the <algorithm> `std::partial_sum()` function
1751 // to compute the partial sum of the elements in a sequence and write them
1752 // to an iterator. The partial sum is the sum of all element values so far in
1753 // the sequence.
1754 template <typename InputSequence, typename OutputIt>
1755 OutputIt c_partial_sum(const InputSequence& input, OutputIt output_first) {
1756  return std::partial_sum(container_algorithm_internal::c_begin(input),
1758  output_first);
1759 }
1760 
1761 // Overload of c_partial_sum() for using a binary operation other than addition
1762 // to compute the "partial sum".
1763 template <typename InputSequence, typename OutputIt, typename BinaryOp>
1764 OutputIt c_partial_sum(const InputSequence& input, OutputIt output_first,
1765  BinaryOp&& op) {
1766  return std::partial_sum(container_algorithm_internal::c_begin(input),
1768  output_first, std::forward<BinaryOp>(op));
1769 }
1770 
1772 } // namespace absl
1773 
1774 #endif // ABSL_ALGORITHM_CONTAINER_H_
absl::c_is_sorted
bool c_is_sorted(const C &c)
Definition: abseil-cpp/absl/algorithm/container.h:940
absl::decay_t
typename std::decay< T >::type decay_t
Definition: abseil-cpp/absl/meta/type_traits.h:628
absl::container_algorithm_internal::ContainerIterPairType
decltype(std::make_pair(ContainerIter< C1 >(), ContainerIter< C2 >())) ContainerIterPairType
Definition: abseil-cpp/absl/algorithm/container.h:77
absl::c_swap_ranges
container_algorithm_internal::ContainerIter< C2 > c_swap_ranges(C1 &c1, C2 &c2)
Definition: abseil-cpp/absl/algorithm/container.h:566
absl::c_move
OutputIterator c_move(C &&src, OutputIterator dest)
Definition: abseil-cpp/absl/algorithm/container.h:545
_gevent_test_main.result
result
Definition: _gevent_test_main.py:96
absl::c_all_of
bool c_all_of(const C &c, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:171
absl::c_set_union
OutputIterator c_set_union(const C1 &c1, const C2 &c2, OutputIterator output)
Definition: abseil-cpp/absl/algorithm/container.h:1237
init
const char * init
Definition: upb/upb/bindings/lua/main.c:49
absl::c_merge
OutputIterator c_merge(const C1 &c1, const C2 &c2, OutputIterator result)
Definition: abseil-cpp/absl/algorithm/container.h:1160
absl::c_minmax_element
container_algorithm_internal::ContainerIterPairType< C, C > c_minmax_element(C &c)
Definition: abseil-cpp/absl/algorithm/container.h:1564
absl::c_iota
void c_iota(Sequence &sequence, T &&value)
Definition: abseil-cpp/absl/algorithm/container.h:1662
find
static void ** find(grpc_chttp2_stream_map *map, uint32_t key)
Definition: stream_map.cc:99
begin
char * begin
Definition: abseil-cpp/absl/strings/internal/str_format/float_conversion.cc:1007
absl::c_partition_copy
std::pair< OutputIterator1, OutputIterator2 > c_partition_copy(const C &c, OutputIterator1 out_true, OutputIterator2 out_false, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:871
C
#define C(x)
Definition: abseil-cpp/absl/hash/internal/city_test.cc:49
absl::c_replace
void c_replace(Sequence &sequence, const T &old_value, const T &new_value)
Definition: abseil-cpp/absl/algorithm/container.h:619
absl::c_pop_heap
void c_pop_heap(RandomAccessContainer &sequence)
Definition: abseil-cpp/absl/algorithm/container.h:1416
grpc::testing::sum
double sum(const T &container, F functor)
Definition: test/cpp/qps/stats.h:30
absl::c_shuffle
void c_shuffle(RandomAccessContainer &c, UniformRandomBitGenerator &&gen)
Definition: abseil-cpp/absl/algorithm/container.h:813
absl::c_is_permutation
bool c_is_permutation(const C1 &c1, const C2 &c2)
Definition: abseil-cpp/absl/algorithm/container.h:427
copy
static int copy(grpc_slice_buffer *input, grpc_slice_buffer *output)
Definition: message_compress.cc:145
options
double_dict options[]
Definition: capstone_test.c:55
google::protobuf.internal::true_type
integral_constant< bool, true > true_type
Definition: bloaty/third_party/protobuf/src/google/protobuf/stubs/template_util.h:89
google::protobuf.internal::false_type
integral_constant< bool, false > false_type
Definition: bloaty/third_party/protobuf/src/google/protobuf/stubs/template_util.h:90
absl::c_is_partitioned
bool c_is_partitioned(const C &c, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:829
absl::c_copy_backward
BidirectionalIterator c_copy_backward(const C &src, BidirectionalIterator dest)
Definition: abseil-cpp/absl/algorithm/container.h:534
absl::c_partition
container_algorithm_internal::ContainerIter< C > c_partition(C &c, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:842
absl::linear_search
bool linear_search(InputIterator first, InputIterator last, const EqualityComparable &value)
Definition: abseil-cpp/absl/algorithm/algorithm.h:131
absl::c_reverse
void c_reverse(Sequence &sequence)
Definition: abseil-cpp/absl/algorithm/container.h:764
absl::c_inplace_merge
void c_inplace_merge(C &c, container_algorithm_internal::ContainerIter< C > middle)
Definition: abseil-cpp/absl/algorithm/container.h:1184
ABSL_NAMESPACE_END
#define ABSL_NAMESPACE_END
Definition: third_party/abseil-cpp/absl/base/config.h:171
absl::c_nth_element
void c_nth_element(RandomAccessContainer &sequence, container_algorithm_internal::ContainerIter< RandomAccessContainer > nth)
Definition: abseil-cpp/absl/algorithm/container.h:1037
absl::c_is_sorted_until
container_algorithm_internal::ContainerIter< C > c_is_sorted_until(C &c)
Definition: abseil-cpp/absl/algorithm/container.h:1014
T
#define T(upbtypeconst, upbtype, ctype, default_value)
absl::container_algorithm_internal::ContainerIter
decltype(begin(std::declval< C & >())) ContainerIter
Definition: abseil-cpp/absl/algorithm/container.h:71
absl::c_adjacent_find
container_algorithm_internal::ContainerIter< Sequence > c_adjacent_find(Sequence &sequence)
Definition: abseil-cpp/absl/algorithm/container.h:300
absl::c_copy_if
OutputIterator c_copy_if(const InputSequence &input, OutputIterator output, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:522
absl::c_sort_heap
void c_sort_heap(RandomAccessContainer &sequence)
Definition: abseil-cpp/absl/algorithm/container.h:1454
make_dist_html.reverse
reverse
Definition: make_dist_html.py:119
absl::c_copy_n
OutputIterator c_copy_n(const C &input, Size n, OutputIterator output)
Definition: abseil-cpp/absl/algorithm/container.h:513
absl::c_min_element
container_algorithm_internal::ContainerIter< Sequence > c_min_element(Sequence &sequence)
Definition: abseil-cpp/absl/algorithm/container.h:1518
ABSL_NAMESPACE_BEGIN
#define ABSL_NAMESPACE_BEGIN
Definition: third_party/abseil-cpp/absl/base/config.h:170
absl::c_upper_bound
container_algorithm_internal::ContainerIter< Sequence > c_upper_bound(Sequence &sequence, T &&value)
Definition: abseil-cpp/absl/algorithm/container.h:1089
absl::move
constexpr absl::remove_reference_t< T > && move(T &&t) noexcept
Definition: abseil-cpp/absl/utility/utility.h:221
end
char * end
Definition: abseil-cpp/absl/strings/internal/str_format/float_conversion.cc:1008
absl::c_count_if
container_algorithm_internal::ContainerDifferenceType< const C > c_count_if(const C &c, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:333
gmock_output_test.output
output
Definition: bloaty/third_party/googletest/googlemock/test/gmock_output_test.py:175
absl::c_fill
void c_fill(C &c, T &&value)
Definition: abseil-cpp/absl/algorithm/container.h:670
absl::c_partial_sort_copy
container_algorithm_internal::ContainerIter< RandomAccessContainer > c_partial_sort_copy(const C &sequence, RandomAccessContainer &result)
Definition: abseil-cpp/absl/algorithm/container.h:988
absl::c_any_of
bool c_any_of(const C &c, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:182
absl::swap
void swap(btree_map< K, V, C, A > &x, btree_map< K, V, C, A > &y)
Definition: abseil-cpp/absl/container/btree_map.h:474
absl::c_find_if
container_algorithm_internal::ContainerIter< C > c_find_if(C &c, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:226
absl::c_find_first_of
container_algorithm_internal::ContainerIter< C1 > c_find_first_of(C1 &container, C2 &options)
Definition: abseil-cpp/absl/algorithm/container.h:275
search.search
def search(target, ideal_distance, stop_event, maximum_hashes, interesting_hamming_distance=None)
Definition: search.py:99
absl::c_equal_range
container_algorithm_internal::ContainerIterPairType< Sequence, Sequence > c_equal_range(Sequence &sequence, T &&value)
Definition: abseil-cpp/absl/algorithm/container.h:1113
std::swap
void swap(Json::Value &a, Json::Value &b)
Specialize std::swap() for Json::Value.
Definition: third_party/bloaty/third_party/protobuf/conformance/third_party/jsoncpp/json.h:1226
absl::c_rotate_copy
OutputIterator c_rotate_copy(const C &sequence, container_algorithm_internal::ContainerIter< const C > middle, OutputIterator result)
Definition: abseil-cpp/absl/algorithm/container.h:798
absl::c_remove_copy
OutputIterator c_remove_copy(const C &c, OutputIterator result, T &&value)
Definition: abseil-cpp/absl/algorithm/container.h:719
absl::c_lexicographical_compare
bool c_lexicographical_compare(Sequence1 &&sequence1, Sequence2 &&sequence2)
Definition: abseil-cpp/absl/algorithm/container.h:1591
absl::c_binary_search
bool c_binary_search(Sequence &&sequence, T &&value)
Definition: abseil-cpp/absl/algorithm/container.h:1135
absl::c_distance
container_algorithm_internal::ContainerDifferenceType< const C > c_distance(const C &c)
Definition: abseil-cpp/absl/algorithm/container.h:156
absl::c_adjacent_difference
OutputIt c_adjacent_difference(const InputSequence &input, OutputIt output_first)
Definition: abseil-cpp/absl/algorithm/container.h:1731
benchmark::internal::Function
void() Function(State &)
Definition: benchmark/include/benchmark/benchmark.h:826
gen
OPENSSL_EXPORT GENERAL_NAME * gen
Definition: x509v3.h:495
absl::c_make_heap
void c_make_heap(RandomAccessContainer &sequence)
Definition: abseil-cpp/absl/algorithm/container.h:1435
absl::c_find
container_algorithm_internal::ContainerIter< C > c_find(C &c, T &&value)
Definition: abseil-cpp/absl/algorithm/container.h:215
absl::c_set_intersection
OutputIterator c_set_intersection(const C1 &c1, const C2 &c2, OutputIterator output)
Definition: abseil-cpp/absl/algorithm/container.h:1273
absl::c_generate_n
container_algorithm_internal::ContainerIter< C > c_generate_n(C &c, Size n, Generator &&gen)
Definition: abseil-cpp/absl/algorithm/container.h:702
absl::c_set_symmetric_difference
OutputIterator c_set_symmetric_difference(const C1 &c1, const C2 &c2, OutputIterator output)
Definition: abseil-cpp/absl/algorithm/container.h:1359
n
int n
Definition: abseil-cpp/absl/container/btree_test.cc:1080
tests.qps.qps_worker.dest
dest
Definition: qps_worker.py:45
absl::c_equal
bool c_equal(const C1 &c1, const C2 &c2)
Definition: abseil-cpp/absl/algorithm/container.h:402
absl::c_rotate
Iterator c_rotate(C &sequence, Iterator middle)
Definition: abseil-cpp/absl/algorithm/container.h:787
absl::c_reverse_copy
OutputIterator c_reverse_copy(const C &sequence, OutputIterator result)
Definition: abseil-cpp/absl/algorithm/container.h:774
absl::c_copy
OutputIterator c_copy(const InputSequence &input, OutputIterator output)
Definition: abseil-cpp/absl/algorithm/container.h:503
absl::c_includes
bool c_includes(const C1 &c1, const C2 &c2)
Definition: abseil-cpp/absl/algorithm/container.h:1207
value
const char * value
Definition: hpack_parser_table.cc:165
absl::c_search_n
container_algorithm_internal::ContainerIter< Sequence > c_search_n(Sequence &sequence, Size count, T &&value)
Definition: abseil-cpp/absl/algorithm/container.h:475
absl::c_unique_copy
OutputIterator c_unique_copy(const C &c, OutputIterator result)
Definition: abseil-cpp/absl/algorithm/container.h:744
absl::c_remove_copy_if
OutputIterator c_remove_copy_if(const C &c, OutputIterator result, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:731
absl::c_linear_search
bool c_linear_search(const C &c, EqualityComparable &&value)
Definition: abseil-cpp/absl/algorithm/container.h:141
abseil.generate
def generate(args)
Definition: abseil-cpp/absl/abseil.podspec.gen.py:200
absl::hash_internal::c1
static const uint32_t c1
Definition: abseil-cpp/absl/hash/internal/city.cc:58
absl::c_replace_copy
OutputIterator c_replace_copy(const C &c, OutputIterator result, T &&old_value, T &&new_value)
Definition: abseil-cpp/absl/algorithm/container.h:643
absl::c_is_heap
bool c_is_heap(const RandomAccessContainer &sequence)
Definition: abseil-cpp/absl/algorithm/container.h:1473
absl::c_sort
void c_sort(C &c)
Definition: abseil-cpp/absl/algorithm/container.h:901
absl::c_for_each
decay_t< Function > c_for_each(C &&c, Function &&f)
Definition: abseil-cpp/absl/algorithm/container.h:204
absl::types_internal::Generator
GeneratorType< Fun > Generator(Fun fun, const char *description)
Definition: abseil-cpp/absl/types/internal/conformance_testing.h:96
absl::container_algorithm_internal::c_begin
ContainerIter< C > c_begin(C &c)
Definition: abseil-cpp/absl/algorithm/container.h:100
N
#define N
Definition: sync_test.cc:37
absl::container_algorithm_internal::ContainerDifferenceType
decltype(std::distance(std::declval< ContainerIter< C > >(), std::declval< ContainerIter< C > >())) ContainerDifferenceType
Definition: abseil-cpp/absl/algorithm/container.h:82
absl::c_push_heap
void c_push_heap(RandomAccessContainer &sequence)
Definition: abseil-cpp/absl/algorithm/container.h:1397
count
int * count
Definition: bloaty/third_party/googletest/googlemock/test/gmock_stress_test.cc:96
absl::c_generate
void c_generate(C &c, Generator &&gen)
Definition: abseil-cpp/absl/algorithm/container.h:690
absl::c_inner_product
decay_t< T > c_inner_product(const Sequence1 &factors1, const Sequence2 &factors2, T &&sum)
Definition: abseil-cpp/absl/algorithm/container.h:1703
absl::c_partial_sum
OutputIt c_partial_sum(const InputSequence &input, OutputIt output_first)
Definition: abseil-cpp/absl/algorithm/container.h:1755
absl::c_prev_permutation
bool c_prev_permutation(C &c)
Definition: abseil-cpp/absl/algorithm/container.h:1638
std
Definition: grpcpp/impl/codegen/async_unary_call.h:407
accumulate
static void accumulate(upb_pb_encoder *e)
Definition: bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c:7694
absl::container_algorithm_internal::ContainerPointerType
typename std::iterator_traits< ContainerIter< C > >::pointer ContainerPointerType
Definition: abseil-cpp/absl/algorithm/container.h:86
absl::rotate
ForwardIterator rotate(ForwardIterator first, ForwardIterator middle, ForwardIterator last)
Definition: abseil-cpp/absl/algorithm/algorithm.h:148
absl::c_next_permutation
bool c_next_permutation(C &c)
Definition: abseil-cpp/absl/algorithm/container.h:1618
absl::c_accumulate
decay_t< T > c_accumulate(const Sequence &sequence, T &&init)
Definition: abseil-cpp/absl/algorithm/container.h:1677
absl::inlined_vector_internal::Iterator
Pointer< A > Iterator
Definition: abseil-cpp/absl/container/internal/inlined_vector.h:64
input
std::string input
Definition: bloaty/third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc:197
absl::c_max_element
container_algorithm_internal::ContainerIter< Sequence > c_max_element(Sequence &sequence)
Definition: abseil-cpp/absl/algorithm/container.h:1540
absl::c_set_difference
OutputIterator c_set_difference(const C1 &c1, const C2 &c2, OutputIterator output)
Definition: abseil-cpp/absl/algorithm/container.h:1321
absl::c_lower_bound
container_algorithm_internal::ContainerIter< Sequence > c_lower_bound(Sequence &sequence, T &&value)
Definition: abseil-cpp/absl/algorithm/container.h:1066
absl::c_replace_copy_if
OutputIterator c_replace_copy_if(const C &c, OutputIterator result, Pred &&pred, T &&new_value)
Definition: abseil-cpp/absl/algorithm/container.h:657
absl::c_mismatch
container_algorithm_internal::ContainerIterPairType< C1, C2 > c_mismatch(C1 &c1, C2 &c2)
Definition: abseil-cpp/absl/algorithm/container.h:347
fill
int fill
Definition: abseil-cpp/absl/base/internal/low_level_alloc_test.cc:47
absl::container_algorithm_internal::c_size
auto c_size(C &c) -> decltype(c.size())
Definition: abseil-cpp/absl/algorithm/container.h:119
absl
Definition: abseil-cpp/absl/algorithm/algorithm.h:31
absl::c_replace_if
void c_replace_if(C &c, Pred &&pred, T &&new_value)
Definition: abseil-cpp/absl/algorithm/container.h:631
absl::c_find_if_not
container_algorithm_internal::ContainerIter< C > c_find_if_not(C &c, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:237
asyncio_get_stats.type
type
Definition: asyncio_get_stats.py:37
absl::c_find_end
container_algorithm_internal::ContainerIter< Sequence1 > c_find_end(Sequence1 &sequence, Sequence2 &subsequence)
Definition: abseil-cpp/absl/algorithm/container.h:249
absl::container_algorithm_internal::c_end
ContainerIter< C > c_end(C &c)
Definition: abseil-cpp/absl/algorithm/container.h:103
absl::c_transform
OutputIterator c_transform(const InputSequence &input, OutputIterator output, UnaryOp &&unary_op)
Definition: abseil-cpp/absl/algorithm/container.h:586
generate-asm-lcov.merge
def merge(callgrind_files, srcs)
Definition: generate-asm-lcov.py:50
absl::c_stable_sort
void c_stable_sort(C &c)
Definition: abseil-cpp/absl/algorithm/container.h:921
absl::c_partial_sort
void c_partial_sort(RandomAccessContainer &sequence, container_algorithm_internal::ContainerIter< RandomAccessContainer > middle)
Definition: abseil-cpp/absl/algorithm/container.h:960
absl::c_is_heap_until
container_algorithm_internal::ContainerIter< RandomAccessContainer > c_is_heap_until(RandomAccessContainer &sequence)
Definition: abseil-cpp/absl/algorithm/container.h:1493
absl::c_move_backward
BidirectionalIterator c_move_backward(C &&src, BidirectionalIterator dest)
Definition: abseil-cpp/absl/algorithm/container.h:555
op
static grpc_op * op
Definition: test/core/fling/client.cc:47
absl::c_stable_partition
container_algorithm_internal::ContainerIter< C > c_stable_partition(C &c, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:856
absl::c_partition_point
container_algorithm_internal::ContainerIter< C > c_partition_point(C &c, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:885
container
static struct async_container * container
Definition: benchmark-million-async.c:33
absl::c_none_of
bool c_none_of(const C &c, Pred &&pred)
Definition: abseil-cpp/absl/algorithm/container.h:193
old_value
int old_value
Definition: abseil-cpp/absl/strings/internal/str_format/output.cc:30
absl::c_count
container_algorithm_internal::ContainerDifferenceType< const C > c_count(const C &c, T &&value)
Definition: abseil-cpp/absl/algorithm/container.h:321
absl::hash_internal::c2
static const uint32_t c2
Definition: abseil-cpp/absl/hash/internal/city.cc:59
absl::container_algorithm_internal::IsUnorderedContainer
Definition: abseil-cpp/absl/algorithm/container.h:106
absl::c_fill_n
void c_fill_n(C &c, Size n, T &&value)
Definition: abseil-cpp/absl/algorithm/container.h:680
absl::c_search
container_algorithm_internal::ContainerIter< Sequence1 > c_search(Sequence1 &sequence, Sequence2 &subsequence)
Definition: abseil-cpp/absl/algorithm/container.h:450


grpc
Author(s):
autogenerated on Thu Mar 13 2025 02:58:54