-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathalgorithm.hpp
100 lines (94 loc) · 3.6 KB
/
algorithm.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// SPDX-License-Identifier: BSL-1.0
#ifndef TETL_ALGORITHM_HPP
#define TETL_ALGORITHM_HPP
/// \defgroup algorithm algorithm
/// Algorithms that operate on ranges
/// \ingroup algorithms-library
/// \example algorithm.cpp
/// \code{.cpp}
/// #include <etl/algorithm.hpp>
/// \endcode
#include <etl/_config/all.hpp>
#include <etl/_algorithm/adjacent_find.hpp>
#include <etl/_algorithm/all_of.hpp>
#include <etl/_algorithm/any_of.hpp>
#include <etl/_algorithm/binary_search.hpp>
#include <etl/_algorithm/clamp.hpp>
#include <etl/_algorithm/copy.hpp>
#include <etl/_algorithm/copy_backward.hpp>
#include <etl/_algorithm/copy_if.hpp>
#include <etl/_algorithm/copy_n.hpp>
#include <etl/_algorithm/count.hpp>
#include <etl/_algorithm/count_if.hpp>
#include <etl/_algorithm/equal.hpp>
#include <etl/_algorithm/equal_range.hpp>
#include <etl/_algorithm/fill.hpp>
#include <etl/_algorithm/fill_n.hpp>
#include <etl/_algorithm/find.hpp>
#include <etl/_algorithm/find_end.hpp>
#include <etl/_algorithm/find_first_of.hpp>
#include <etl/_algorithm/find_if.hpp>
#include <etl/_algorithm/find_if_not.hpp>
#include <etl/_algorithm/for_each.hpp>
#include <etl/_algorithm/for_each_n.hpp>
#include <etl/_algorithm/generate.hpp>
#include <etl/_algorithm/generate_n.hpp>
#include <etl/_algorithm/includes.hpp>
#include <etl/_algorithm/inplace_merge.hpp>
#include <etl/_algorithm/is_partitioned.hpp>
#include <etl/_algorithm/is_permutation.hpp>
#include <etl/_algorithm/is_sorted.hpp>
#include <etl/_algorithm/is_sorted_until.hpp>
#include <etl/_algorithm/iter_swap.hpp>
#include <etl/_algorithm/lexicographical_compare.hpp>
#include <etl/_algorithm/lower_bound.hpp>
#include <etl/_algorithm/max.hpp>
#include <etl/_algorithm/max_element.hpp>
#include <etl/_algorithm/merge.hpp>
#include <etl/_algorithm/min.hpp>
#include <etl/_algorithm/min_element.hpp>
#include <etl/_algorithm/minmax.hpp>
#include <etl/_algorithm/minmax_element.hpp>
#include <etl/_algorithm/mismatch.hpp>
#include <etl/_algorithm/move.hpp>
#include <etl/_algorithm/move_backward.hpp>
#include <etl/_algorithm/none_of.hpp>
#include <etl/_algorithm/nth_element.hpp>
#include <etl/_algorithm/partial_sort.hpp>
#include <etl/_algorithm/partition.hpp>
#include <etl/_algorithm/partition_copy.hpp>
#include <etl/_algorithm/partition_point.hpp>
#include <etl/_algorithm/ranges_in_fun_result.hpp>
#include <etl/_algorithm/remove.hpp>
#include <etl/_algorithm/remove_copy.hpp>
#include <etl/_algorithm/remove_copy_if.hpp>
#include <etl/_algorithm/remove_if.hpp>
#include <etl/_algorithm/replace.hpp>
#include <etl/_algorithm/replace_if.hpp>
#include <etl/_algorithm/reverse.hpp>
#include <etl/_algorithm/reverse_copy.hpp>
#include <etl/_algorithm/rotate.hpp>
#include <etl/_algorithm/rotate_copy.hpp>
#include <etl/_algorithm/search.hpp>
#include <etl/_algorithm/search_n.hpp>
#include <etl/_algorithm/set_difference.hpp>
#include <etl/_algorithm/set_intersection.hpp>
#include <etl/_algorithm/set_symmetric_difference.hpp>
#include <etl/_algorithm/set_union.hpp>
#include <etl/_algorithm/shift_left.hpp>
#include <etl/_algorithm/shift_right.hpp>
#include <etl/_algorithm/sort.hpp>
#include <etl/_algorithm/stable_partition.hpp>
#include <etl/_algorithm/stable_sort.hpp>
#include <etl/_algorithm/swap_ranges.hpp>
#include <etl/_algorithm/transform.hpp>
#include <etl/_algorithm/unique.hpp>
#include <etl/_algorithm/unique_copy.hpp>
#include <etl/_algorithm/upper_bound.hpp>
// Non-standard extensions
#include <etl/_algorithm/bubble_sort.hpp>
#include <etl/_algorithm/exchange_sort.hpp>
#include <etl/_algorithm/gnome_sort.hpp>
#include <etl/_algorithm/insertion_sort.hpp>
#include <etl/_algorithm/merge_sort.hpp>
#endif // TETL_ALGORITHM_HPP