|
11 | 11 | #define _LIBCPP___FLAT_MAP_FLAT_MAP_H |
12 | 12 |
|
13 | 13 | #include <__algorithm/lexicographical_compare_three_way.h> |
| 14 | +#include <__algorithm/min.h> |
14 | 15 | #include <__algorithm/ranges_adjacent_find.h> |
15 | 16 | #include <__algorithm/ranges_equal.h> |
16 | 17 | #include <__algorithm/ranges_inplace_merge.h> |
|
19 | 20 | #include <__algorithm/ranges_stable_sort.h> |
20 | 21 | #include <__algorithm/ranges_unique.h> |
21 | 22 | #include <__algorithm/ranges_upper_bound.h> |
| 23 | +#include <__algorithm/remove_if.h> |
| 24 | +#include <__assert> |
22 | 25 | #include <__compare/synth_three_way.h> |
23 | 26 | #include <__concepts/convertible_to.h> |
24 | 27 | #include <__concepts/swappable.h> |
25 | 28 | #include <__config> |
26 | 29 | #include <__cstddef/byte.h> |
| 30 | +#include <__cstddef/ptrdiff_t.h> |
27 | 31 | #include <__flat_map/sorted_unique.h> |
28 | 32 | #include <__functional/invoke.h> |
29 | 33 | #include <__functional/is_transparent.h> |
|
34 | 38 | #include <__iterator/next.h> |
35 | 39 | #include <__iterator/ranges_iterator_traits.h> |
36 | 40 | #include <__iterator/reverse_iterator.h> |
| 41 | +#include <__memory/addressof.h> |
37 | 42 | #include <__memory/allocator_traits.h> |
38 | 43 | #include <__memory/uses_allocator.h> |
39 | 44 | #include <__memory/uses_allocator_construction.h> |
| 45 | +#include <__ranges/access.h> |
40 | 46 | #include <__ranges/concepts.h> |
41 | 47 | #include <__ranges/container_compatible_range.h> |
42 | 48 | #include <__ranges/drop_view.h> |
| 49 | +#include <__ranges/from_range.h> |
43 | 50 | #include <__ranges/ref_view.h> |
| 51 | +#include <__ranges/size.h> |
44 | 52 | #include <__ranges/subrange.h> |
45 | 53 | #include <__ranges/zip_view.h> |
46 | 54 | #include <__type_traits/conjunction.h> |
|
52 | 60 | #include <__type_traits/maybe_const.h> |
53 | 61 | #include <__utility/exception_guard.h> |
54 | 62 | #include <__utility/pair.h> |
| 63 | +#include <__vector/vector.h> |
55 | 64 | #include <initializer_list> |
56 | 65 | #include <stdexcept> |
57 | | -#include <string> |
58 | | -#include <vector> |
59 | 66 |
|
60 | 67 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
61 | 68 | # pragma GCC system_header |
|
0 commit comments