Revert "[libc] Use best-fit binary trie to make malloc logarithmic" (#117065)
[llvm-project.git] / libcxx / include / module.modulemap
blob4e06a68c6a6b614515be9c4c83248b85ab3e010c
1 // This module contains headers related to the configuration of the library. These headers
2 // are free of any dependency on the rest of libc++.
3 module std_config [system] {
4   textual header "__config"
5   textual header "__configuration/abi.h"
6   textual header "__configuration/availability.h"
7   textual header "__configuration/compiler.h"
8   textual header "__configuration/language.h"
9   textual header "__configuration/platform.h"
10   textual header "version"
13 module std_core [system] {
14   module cstddef {
15     module byte         { header "__cstddef/byte.h" }
16     module max_align_t  {
17       header "__cstddef/max_align_t.h"
18       export *
19     }
20     module nullptr_t    { header "__cstddef/nullptr_t.h" }
21     module ptrdiff_t    { header "__cstddef/ptrdiff_t.h" }
22     module size_t       { header "__cstddef/size_t.h" }
23   }
25   module cstdint {
26     header "cstdint"
27     export *
28   }
30   module fwd {
31     module byte         { header "__fwd/byte.h" }
32     module functional   { header "__fwd/functional.h" }
33     module pair         { header "__fwd/pair.h" }
34     module tuple        { header "__fwd/tuple.h" }
35   }
37   module limits {
38     header "limits"
39     export *
40   }
42   module math {
43     module abs                              { header "__math/abs.h" }
44     module copysign                         { header "__math/copysign.h" }
45     module error_functions                  { header "__math/error_functions.h" }
46     module exponential_functions            { header "__math/exponential_functions.h" }
47     module fdim                             { header "__math/fdim.h" }
48     module fma                              { header "__math/fma.h" }
49     module gamma                            { header "__math/gamma.h" }
50     module hyperbolic_functions             { header "__math/hyperbolic_functions.h" }
51     module hypot                            { header "__math/hypot.h" }
52     module inverse_hyperbolic_functions     { header "__math/inverse_hyperbolic_functions.h" }
53     module inverse_trigonometric_functions  { header "__math/inverse_trigonometric_functions.h" }
54     module logarithms                       { header "__math/logarithms.h" }
55     module min_max                          { header "__math/min_max.h" }
56     module modulo                           { header "__math/modulo.h" }
57     module remainder                        { header "__math/remainder.h" }
58     module roots                            { header "__math/roots.h" }
59     module rounding_functions               { header "__math/rounding_functions.h" }
60     module special_functions                { header "__math/special_functions.h" }
61     module traits                           { header "__math/traits.h" }
62     module trigonometric_functions          { header "__math/trigonometric_functions.h" }
63   }
65   module type_traits {
66     module add_cv_quals                               { header "__type_traits/add_cv_quals.h" }
67     module add_lvalue_reference                       { header "__type_traits/add_lvalue_reference.h" }
68     module add_pointer                                { header "__type_traits/add_pointer.h" }
69     module add_rvalue_reference                       { header "__type_traits/add_rvalue_reference.h" }
70     module aligned_storage                            { header "__type_traits/aligned_storage.h" }
71     module aligned_union                              { header "__type_traits/aligned_union.h" }
72     module alignment_of                               { header "__type_traits/alignment_of.h" }
73     module can_extract_key                            { header "__type_traits/can_extract_key.h" }
74     module common_reference                           { header "__type_traits/common_reference.h" }
75     module common_type {
76       header "__type_traits/common_type.h"
77       // We need to export those because common_type inherits from either of those based on __builtin_common_type.
78       export std_core.type_traits.type_identity
79       export std_core.utility_core.empty
80     }
81     module conditional                                { header "__type_traits/conditional.h" }
82     module conjunction                                { header "__type_traits/conjunction.h" }
83     module container_traits                           { header "__type_traits/container_traits.h" }
84     module copy_cv                                    { header "__type_traits/copy_cv.h" }
85     module copy_cvref                                 { header "__type_traits/copy_cvref.h" }
86     module datasizeof                                 { header "__type_traits/datasizeof.h" }
87     module decay                                      { header "__type_traits/decay.h" }
88     module dependent_type                             { header "__type_traits/dependent_type.h" }
89     module desugars_to                                { header "__type_traits/desugars_to.h" }
90     module disjunction                                { header "__type_traits/disjunction.h" }
91     module enable_if                                  { header "__type_traits/enable_if.h" }
92     module extent                                     { header "__type_traits/extent.h" }
93     module has_unique_object_representation           { header "__type_traits/has_unique_object_representation.h" }
94     module has_virtual_destructor                     { header "__type_traits/has_virtual_destructor.h" }
95     module integral_constant                          { header "__type_traits/integral_constant.h" }
96     module invoke                                     { header "__type_traits/invoke.h" }
97     module is_abstract {
98       header "__type_traits/is_abstract.h"
99       export std_core.type_traits.integral_constant
100     }
101     module is_aggregate {
102       header "__type_traits/is_aggregate.h"
103       export std_core.type_traits.integral_constant
104     }
105     module is_allocator {
106       header "__type_traits/is_allocator.h"
107       export std_core.type_traits.integral_constant
108     }
109     module is_always_bitcastable {
110       header "__type_traits/is_always_bitcastable.h"
111       export std_core.type_traits.integral_constant
112     }
113     module is_arithmetic {
114       header "__type_traits/is_arithmetic.h"
115       export std_core.type_traits.integral_constant
116     }
117     module is_array {
118       header "__type_traits/is_array.h"
119       export std_core.type_traits.integral_constant
120     }
121     module is_assignable {
122       header "__type_traits/is_assignable.h"
123       export std_core.type_traits.integral_constant
124     }
125     module is_base_of {
126       header "__type_traits/is_base_of.h"
127       export std_core.type_traits.integral_constant
128     }
129     module is_bounded_array {
130       header "__type_traits/is_bounded_array.h"
131       export std_core.type_traits.integral_constant
132     }
133     module is_callable {
134       header "__type_traits/is_callable.h"
135       export std_core.type_traits.integral_constant
136     }
137     module is_char_like_type {
138       header "__type_traits/is_char_like_type.h"
139       export std_core.type_traits.integral_constant
140     }
141     module is_class {
142       header "__type_traits/is_class.h"
143       export std_core.type_traits.integral_constant
144     }
145     module is_compound {
146       header "__type_traits/is_compound.h"
147       export std_core.type_traits.integral_constant
148     }
149     module is_const {
150       header "__type_traits/is_const.h"
151       export std_core.type_traits.integral_constant
152     }
153     module is_constant_evaluated {
154       header "__type_traits/is_constant_evaluated.h"
155       export std_core.type_traits.integral_constant
156     }
157     module is_constructible {
158       header "__type_traits/is_constructible.h"
159       export std_core.type_traits.integral_constant
160     }
161     module is_convertible {
162       header "__type_traits/is_convertible.h"
163       export std_core.type_traits.integral_constant
164     }
165     module is_core_convertible {
166       header "__type_traits/is_core_convertible.h"
167       export std_core.type_traits.integral_constant
168     }
169     module is_destructible {
170       header "__type_traits/is_destructible.h"
171       export std_core.type_traits.integral_constant
172     }
173     module is_empty {
174       header "__type_traits/is_empty.h"
175       export std_core.type_traits.integral_constant
176     }
177     module is_enum {
178       header "__type_traits/is_enum.h"
179       export std_core.type_traits.integral_constant
180     }
181     module is_equality_comparable {
182       header "__type_traits/is_equality_comparable.h"
183       export std_core.type_traits.integral_constant
184     }
185     module is_execution_policy {
186       header "__type_traits/is_execution_policy.h"
187       export std_core.type_traits.integral_constant
188     }
189     module is_final {
190       header "__type_traits/is_final.h"
191       export std_core.type_traits.integral_constant
192     }
193     module is_floating_point {
194       header "__type_traits/is_floating_point.h"
195       export std_core.type_traits.integral_constant
196     }
197     module is_function {
198       header "__type_traits/is_function.h"
199       export std_core.type_traits.integral_constant
200     }
201     module is_fundamental {
202       header "__type_traits/is_fundamental.h"
203       export std_core.type_traits.integral_constant
204     }
205     module is_implicit_lifetime {
206       header "__type_traits/is_implicit_lifetime.h"
207       export std_core.type_traits.integral_constant
208     }
209     module is_implicitly_default_constructible {
210       header "__type_traits/is_implicitly_default_constructible.h"
211       export std_core.type_traits.integral_constant
212     }
213     module is_integral {
214       header "__type_traits/is_integral.h"
215       export std_core.type_traits.integral_constant
216     }
217     module is_literal_type {
218       header "__type_traits/is_literal_type.h"
219       export std_core.type_traits.integral_constant
220     }
221     module is_member_pointer {
222       header "__type_traits/is_member_pointer.h"
223       export std_core.type_traits.integral_constant
224     }
225     module is_nothrow_assignable {
226       header "__type_traits/is_nothrow_assignable.h"
227       export std_core.type_traits.integral_constant
228     }
229     module is_nothrow_constructible {
230       header "__type_traits/is_nothrow_constructible.h"
231       export std_core.type_traits.integral_constant
232     }
233     module is_nothrow_convertible {
234       header "__type_traits/is_nothrow_convertible.h"
235       export std_core.type_traits.integral_constant
236     }
237     module is_nothrow_destructible {
238       header "__type_traits/is_nothrow_destructible.h"
239       export std_core.type_traits.integral_constant
240     }
241     module is_null_pointer {
242       header "__type_traits/is_null_pointer.h"
243       export std_core.type_traits.integral_constant
244     }
245     module is_object {
246       header "__type_traits/is_object.h"
247       export std_core.type_traits.integral_constant
248     }
249     module is_pod {
250       header "__type_traits/is_pod.h"
251       export std_core.type_traits.integral_constant
252     }
253     module is_pointer {
254       header "__type_traits/is_pointer.h"
255       export std_core.type_traits.integral_constant
256     }
257     module is_polymorphic {
258       header "__type_traits/is_polymorphic.h"
259       export std_core.type_traits.integral_constant
260     }
261     module is_primary_template {
262       header "__type_traits/is_primary_template.h"
263       export std_core.type_traits.integral_constant
264     }
265     module is_reference_wrapper {
266       header "__type_traits/is_reference_wrapper.h"
267       export std_core.type_traits.integral_constant
268     }
269     module is_reference {
270       header "__type_traits/is_reference.h"
271       export std_core.type_traits.integral_constant
272     }
273     module is_referenceable {
274       header "__type_traits/is_referenceable.h"
275       export std_core.type_traits.integral_constant
276     }
277     module is_same {
278       header "__type_traits/is_same.h"
279       export std_core.type_traits.integral_constant
280     }
281     module is_scalar {
282       header "__type_traits/is_scalar.h"
283       export std_core.type_traits.integral_constant
284     }
285     module is_signed_integer {
286       header "__type_traits/is_signed_integer.h"
287       export std_core.type_traits.integral_constant
288     }
289     module is_signed {
290       header "__type_traits/is_signed.h"
291       export std_core.type_traits.integral_constant
292     }
293     module is_specialization {
294       header "__type_traits/is_specialization.h"
295       export std_core.type_traits.integral_constant
296     }
297     module is_standard_layout {
298       header "__type_traits/is_standard_layout.h"
299       export std_core.type_traits.integral_constant
300     }
301     module is_swappable {
302       header "__type_traits/is_swappable.h"
303       export std_core.type_traits.integral_constant
304     }
305     module is_trivial {
306       header "__type_traits/is_trivial.h"
307       export std_core.type_traits.integral_constant
308     }
309     module is_trivially_assignable {
310       header "__type_traits/is_trivially_assignable.h"
311       export std_core.type_traits.integral_constant
312     }
313     module is_trivially_constructible {
314       header "__type_traits/is_trivially_constructible.h"
315       export std_core.type_traits.integral_constant
316     }
317     module is_trivially_copyable {
318       header "__type_traits/is_trivially_copyable.h"
319       export std_core.type_traits.integral_constant
320     }
321     module is_trivially_destructible {
322       header "__type_traits/is_trivially_destructible.h"
323       export std_core.type_traits.integral_constant
324     }
325     module is_trivially_lexicographically_comparable {
326       header "__type_traits/is_trivially_lexicographically_comparable.h"
327       export std_core.type_traits.integral_constant
328     }
329     module is_trivially_relocatable {
330       header "__type_traits/is_trivially_relocatable.h"
331       export std_core.type_traits.integral_constant
332     }
333     module is_unbounded_array {
334       header "__type_traits/is_unbounded_array.h"
335       export std_core.type_traits.integral_constant
336     }
337     module is_union {
338       header "__type_traits/is_union.h"
339       export std_core.type_traits.integral_constant
340     }
341     module is_unsigned_integer {
342       header "__type_traits/is_unsigned_integer.h"
343       export std_core.type_traits.integral_constant
344     }
345     module is_unsigned {
346       header "__type_traits/is_unsigned.h"
347       export std_core.type_traits.integral_constant
348     }
349     module is_valid_expansion {
350       header "__type_traits/is_valid_expansion.h"
351       export std_core.type_traits.integral_constant
352     }
353     module is_void {
354       header "__type_traits/is_void.h"
355       export std_core.type_traits.integral_constant
356     }
357     module is_volatile {
358       header "__type_traits/is_volatile.h"
359       export std_core.type_traits.integral_constant
360     }
361     module lazy                                       { header "__type_traits/lazy.h" }
362     module make_32_64_or_128_bit                      { header "__type_traits/make_32_64_or_128_bit.h" }
363     module make_const_lvalue_ref                      { header "__type_traits/make_const_lvalue_ref.h" }
364     module make_signed                                { header "__type_traits/make_signed.h" }
365     module make_unsigned                              { header "__type_traits/make_unsigned.h" }
366     module maybe_const                                { header "__type_traits/maybe_const.h" }
367     module nat                                        { header "__type_traits/nat.h" }
368     module negation                                   { header "__type_traits/negation.h" }
369     module promote                                    { header "__type_traits/promote.h" }
370     module rank                                       { header "__type_traits/rank.h" }
371     module remove_all_extents                         { header "__type_traits/remove_all_extents.h" }
372     module remove_const_ref                           { header "__type_traits/remove_const_ref.h" }
373     module remove_const                               { header "__type_traits/remove_const.h" }
374     module remove_cv                                  { header "__type_traits/remove_cv.h" }
375     module remove_cvref                               { header "__type_traits/remove_cvref.h" }
376     module remove_extent                              { header "__type_traits/remove_extent.h" }
377     module remove_pointer                             { header "__type_traits/remove_pointer.h" }
378     module remove_reference                           { header "__type_traits/remove_reference.h" }
379     module remove_volatile                            { header "__type_traits/remove_volatile.h" }
380     module result_of                                  { header "__type_traits/result_of.h" }
381     module strip_signature                            { header "__type_traits/strip_signature.h" }
382     module type_identity                              { header "__type_traits/type_identity.h" }
383     module type_list                                  { header "__type_traits/type_list.h" }
384     module underlying_type                            { header "__type_traits/underlying_type.h" }
385     module unwrap_ref                                 { header "__type_traits/unwrap_ref.h" }
386     module void_t                                     { header "__type_traits/void_t.h" }
388     header "type_traits"
389     export *
390   } // module type_traits
392   // Only the truly dependency-free parts of __utility are here
393   module utility_core {
394     module declval  { header "__utility/declval.h" }
395     module empty    { header "__utility/empty.h" }
396     module forward  { header "__utility/forward.h" }
397   }
398 } // module std_core
400 module std [system] {
401   module algorithm {
402     module adjacent_find                          { header "__algorithm/adjacent_find.h" }
403     module all_of                                 { header "__algorithm/all_of.h" }
404     module any_of                                 { header "__algorithm/any_of.h" }
405     module binary_search                          { header "__algorithm/binary_search.h" }
406     module clamp                                  { header "__algorithm/clamp.h" }
407     module comp_ref_type                          { header "__algorithm/comp_ref_type.h" }
408     module comp                                   { header "__algorithm/comp.h" }
409     module copy_backward                          { header "__algorithm/copy_backward.h" }
410     module copy_if                                { header "__algorithm/copy_if.h" }
411     module copy_move_common                       { header "__algorithm/copy_move_common.h" }
412     module copy_n                                 { header "__algorithm/copy_n.h" }
413     module copy                                   { header "__algorithm/copy.h" }
414     module count_if                               { header "__algorithm/count_if.h" }
415     module count                                  { header "__algorithm/count.h" }
416     module equal_range                            { header "__algorithm/equal_range.h" }
417     module equal                                  { header "__algorithm/equal.h" }
418     module fill_n                                 { header "__algorithm/fill_n.h" }
419     module fill                                   { header "__algorithm/fill.h" }
420     module find_end                               { header "__algorithm/find_end.h" }
421     module find_first_of                          { header "__algorithm/find_first_of.h" }
422     module find_if_not                            { header "__algorithm/find_if_not.h" }
423     module find_if                                { header "__algorithm/find_if.h" }
424     module find_segment_if                        { header "__algorithm/find_segment_if.h" }
425     module find                                   { header "__algorithm/find.h" }
426     module for_each_n                             { header "__algorithm/for_each_n.h" }
427     module for_each_segment                       { header "__algorithm/for_each_segment.h" }
428     module for_each                               { header "__algorithm/for_each.h" }
429     module generate_n                             { header "__algorithm/generate_n.h" }
430     module generate                               { header "__algorithm/generate.h" }
431     module half_positive                          { header "__algorithm/half_positive.h" }
432     module in_found_result                        { header "__algorithm/in_found_result.h" }
433     module in_fun_result                          { header "__algorithm/in_fun_result.h" }
434     module in_in_out_result                       { header "__algorithm/in_in_out_result.h" }
435     module in_in_result                           { header "__algorithm/in_in_result.h" }
436     module in_out_out_result                      { header "__algorithm/in_out_out_result.h" }
437     module in_out_result                          { header "__algorithm/in_out_result.h" }
438     module includes                               { header "__algorithm/includes.h" }
439     module inplace_merge                          { header "__algorithm/inplace_merge.h" }
440     module is_heap_until                          { header "__algorithm/is_heap_until.h" }
441     module is_heap                                { header "__algorithm/is_heap.h" }
442     module is_partitioned                         { header "__algorithm/is_partitioned.h" }
443     module is_permutation                         { header "__algorithm/is_permutation.h" }
444     module is_sorted_until                        { header "__algorithm/is_sorted_until.h" }
445     module is_sorted                              { header "__algorithm/is_sorted.h" }
446     module iter_swap                              { header "__algorithm/iter_swap.h" }
447     module iterator_operations {
448       header "__algorithm/iterator_operations.h"
449       export std.iterator.advance
450       export std.iterator.distance
451       export std.iterator.iter_move
452       export std.iterator.iter_swap
453       export std.iterator.next
454       export std.iterator.prev
455     }
456     module lexicographical_compare_three_way      { header "__algorithm/lexicographical_compare_three_way.h" }
457     module lexicographical_compare                { header "__algorithm/lexicographical_compare.h" }
458     module lower_bound                            { header "__algorithm/lower_bound.h" }
459     module make_heap                              { header "__algorithm/make_heap.h" }
460     module make_projected                         { header "__algorithm/make_projected.h" }
461     module max_element                            { header "__algorithm/max_element.h" }
462     module max                                    { header "__algorithm/max.h" }
463     module merge                                  { header "__algorithm/merge.h" }
464     module min_element                            { header "__algorithm/min_element.h" }
465     module min_max_result                         { header "__algorithm/min_max_result.h" }
466     module min                                    { header "__algorithm/min.h" }
467     module minmax_element                         { header "__algorithm/minmax_element.h" }
468     module minmax {
469       header "__algorithm/minmax.h"
470       export std.utility.pair // return type
471     }
472     module mismatch {
473       header "__algorithm/mismatch.h"
474       export std.utility.pair // return type
475     }
476     module move_backward                          { header "__algorithm/move_backward.h" }
477     module move                                   { header "__algorithm/move.h" }
478     module next_permutation                       { header "__algorithm/next_permutation.h" }
479     module none_of                                { header "__algorithm/none_of.h" }
480     module nth_element                            { header "__algorithm/nth_element.h" }
481     module partial_sort_copy                      { header "__algorithm/partial_sort_copy.h" }
482     module partial_sort                           { header "__algorithm/partial_sort.h" }
483     module partition_copy                         { header "__algorithm/partition_copy.h" }
484     module partition_point                        { header "__algorithm/partition_point.h" }
485     module partition                              { header "__algorithm/partition.h" }
486     module pop_heap                               { header "__algorithm/pop_heap.h" }
487     module prev_permutation                       { header "__algorithm/prev_permutation.h" }
488     module pstl                                   { header "__algorithm/pstl.h" }
489     module push_heap                              { header "__algorithm/push_heap.h" }
490     module ranges_adjacent_find                   { header "__algorithm/ranges_adjacent_find.h" }
491     module ranges_all_of                          { header "__algorithm/ranges_all_of.h" }
492     module ranges_any_of                          { header "__algorithm/ranges_any_of.h" }
493     module ranges_binary_search {
494       header "__algorithm/ranges_binary_search.h"
495       export std.functional.ranges_operations
496     }
497     module ranges_clamp {
498       header "__algorithm/ranges_clamp.h"
499       export std.functional.ranges_operations
500     }
501     module ranges_contains_subrange {
502       header "__algorithm/ranges_contains_subrange.h"
503     }
504     module ranges_contains {
505       header "__algorithm/ranges_contains.h"
506     }
507     module ranges_copy_backward {
508       header "__algorithm/ranges_copy_backward.h"
509       export std.algorithm.in_out_result
510     }
511     module ranges_copy_if {
512       header "__algorithm/ranges_copy_if.h"
513       export std.algorithm.in_out_result
514     }
515     module ranges_copy_n {
516       header "__algorithm/ranges_copy_n.h"
517       export std.algorithm.in_out_result
518     }
519     module ranges_copy {
520       header "__algorithm/ranges_copy.h"
521       export std.algorithm.in_out_result
522     }
523     module ranges_count_if                        { header "__algorithm/ranges_count_if.h" }
524     module ranges_count                           { header "__algorithm/ranges_count.h" }
525     module ranges_ends_with                       { header "__algorithm/ranges_ends_with.h" }
526     module ranges_equal_range {
527       header "__algorithm/ranges_equal_range.h"
528       export std.functional.ranges_operations
529     }
530     module ranges_equal {
531       header "__algorithm/ranges_equal.h"
532       export std.functional.identity
533     }
534     module ranges_fill_n                          { header "__algorithm/ranges_fill_n.h" }
535     module ranges_fill                            { header "__algorithm/ranges_fill.h" }
536     module ranges_find_end                        { header "__algorithm/ranges_find_end.h" }
537     module ranges_find_first_of                   { header "__algorithm/ranges_find_first_of.h" }
538     module ranges_find_if_not                     { header "__algorithm/ranges_find_if_not.h" }
539     module ranges_find_if                         { header "__algorithm/ranges_find_if.h" }
540     module ranges_find_last                       { header "__algorithm/ranges_find_last.h" }
541     module ranges_find                            { header "__algorithm/ranges_find.h" }
542     module ranges_fold                            { header "__algorithm/ranges_fold.h" }
543     module ranges_for_each_n {
544       header "__algorithm/ranges_for_each_n.h"
545       export std.algorithm.in_fun_result
546     }
547     module ranges_for_each {
548       header "__algorithm/ranges_for_each.h"
549       export std.algorithm.in_fun_result
550     }
551     module ranges_generate_n {
552       header "__algorithm/ranges_generate_n.h"
553     }
554     module ranges_generate {
555       header "__algorithm/ranges_generate.h"
556     }
557     module ranges_includes {
558       header "__algorithm/ranges_includes.h"
559       export std.functional.ranges_operations
560     }
561     module ranges_inplace_merge {
562       header "__algorithm/ranges_inplace_merge.h"
563       export std.functional.ranges_operations
564     }
565     module ranges_is_heap_until {
566       header "__algorithm/ranges_is_heap_until.h"
567       export std.functional.ranges_operations
568     }
569     module ranges_is_heap {
570       header "__algorithm/ranges_is_heap.h"
571       export std.functional.ranges_operations
572     }
573     module ranges_is_partitioned {
574       header "__algorithm/ranges_is_partitioned.h"
575     }
576     module ranges_is_permutation {
577       header "__algorithm/ranges_is_permutation.h"
578     }
579     module ranges_is_sorted_until {
580       header "__algorithm/ranges_is_sorted_until.h"
581       export std.functional.ranges_operations
582     }
583     module ranges_is_sorted {
584       header "__algorithm/ranges_is_sorted.h"
585       export std.functional.ranges_operations
586     }
587     module ranges_iterator_concept {
588       header "__algorithm/ranges_iterator_concept.h"
589     }
590     module ranges_lexicographical_compare {
591       header "__algorithm/ranges_lexicographical_compare.h"
592       export std.functional.ranges_operations
593     }
594     module ranges_lower_bound {
595       header "__algorithm/ranges_lower_bound.h"
596       export std.functional.ranges_operations
597     }
598     module ranges_make_heap {
599       header "__algorithm/ranges_make_heap.h"
600       export std.functional.ranges_operations
601     }
602     module ranges_max_element {
603       header "__algorithm/ranges_max_element.h"
604       export std.functional.ranges_operations
605     }
606     module ranges_max {
607       header "__algorithm/ranges_max.h"
608       export std.functional.ranges_operations
609     }
610     module ranges_merge {
611       header "__algorithm/ranges_merge.h"
612       export std.functional.ranges_operations
613       export std.algorithm.in_in_out_result
614     }
615     module ranges_min_element {
616       header "__algorithm/ranges_min_element.h"
617       export std.functional.ranges_operations
618     }
619     module ranges_min {
620       header "__algorithm/ranges_min.h"
621       export std.functional.ranges_operations
622     }
623     module ranges_minmax_element {
624       header "__algorithm/ranges_minmax_element.h"
625       export std.functional.ranges_operations
626       export std.algorithm.min_max_result
627     }
628     module ranges_minmax {
629       header "__algorithm/ranges_minmax.h"
630       export std.functional.ranges_operations
631       export std.algorithm.min_max_result
632     }
633     module ranges_mismatch {
634       header "__algorithm/ranges_mismatch.h"
635       export std.algorithm.in_in_result
636     }
637     module ranges_move_backward {
638       header "__algorithm/ranges_move_backward.h"
639       export std.algorithm.in_out_result
640     }
641     module ranges_move {
642       header "__algorithm/ranges_move.h"
643       export std.algorithm.in_out_result
644     }
645     module ranges_next_permutation {
646       header "__algorithm/ranges_next_permutation.h"
647       export std.functional.ranges_operations
648       export std.algorithm.in_found_result
649     }
650     module ranges_none_of {
651       header "__algorithm/ranges_none_of.h"
652     }
653     module ranges_nth_element {
654       header "__algorithm/ranges_nth_element.h"
655       export std.functional.ranges_operations
656     }
657     module ranges_partial_sort_copy {
658       header "__algorithm/ranges_partial_sort_copy.h"
659       export std.functional.ranges_operations
660     }
661     module ranges_partial_sort {
662       header "__algorithm/ranges_partial_sort.h"
663       export std.functional.ranges_operations
664     }
665     module ranges_partition_copy {
666       header "__algorithm/ranges_partition_copy.h"
667       export std.algorithm.in_out_out_result
668     }
669     module ranges_partition_point {
670       header "__algorithm/ranges_partition_point.h"
671     }
672     module ranges_partition {
673       header "__algorithm/ranges_partition.h"
674     }
675     module ranges_pop_heap {
676       header "__algorithm/ranges_pop_heap.h"
677       export std.functional.ranges_operations
678     }
679     module ranges_prev_permutation {
680       header "__algorithm/ranges_prev_permutation.h"
681       export std.functional.ranges_operations
682       export std.algorithm.in_found_result
683     }
684     module ranges_push_heap {
685       header "__algorithm/ranges_push_heap.h"
686       export std.functional.ranges_operations
687     }
688     module ranges_remove_copy_if {
689       header "__algorithm/ranges_remove_copy_if.h"
690       export std.algorithm.in_out_result
691     }
692     module ranges_remove_copy {
693       header "__algorithm/ranges_remove_copy.h"
694       export std.algorithm.in_out_result
695     }
696     module ranges_remove_if {
697       header "__algorithm/ranges_remove_if.h"
698     }
699     module ranges_remove {
700       header "__algorithm/ranges_remove.h"
701     }
702     module ranges_replace_copy_if {
703       header "__algorithm/ranges_replace_copy_if.h"
704       export std.algorithm.in_out_result
705     }
706     module ranges_replace_copy {
707       header "__algorithm/ranges_replace_copy.h"
708       export std.algorithm.in_out_result
709     }
710     module ranges_replace_if {
711       header "__algorithm/ranges_replace_if.h"
712     }
713     module ranges_replace {
714       header "__algorithm/ranges_replace.h"
715     }
716     module ranges_reverse_copy {
717       header "__algorithm/ranges_reverse_copy.h"
718       export std.algorithm.in_out_result
719     }
720     module ranges_reverse {
721       header "__algorithm/ranges_reverse.h"
722     }
723     module ranges_rotate_copy {
724       header "__algorithm/ranges_rotate_copy.h"
725       export std.algorithm.in_out_result
726     }
727     module ranges_rotate                          { header "__algorithm/ranges_rotate.h" }
728     module ranges_sample                          { header "__algorithm/ranges_sample.h" }
729     module ranges_search_n                        { header "__algorithm/ranges_search_n.h" }
730     module ranges_search                          { header "__algorithm/ranges_search.h" }
731     module ranges_set_difference {
732       header "__algorithm/ranges_set_difference.h"
733       export std.functional.ranges_operations
734       export std.algorithm.in_out_result
735     }
736     module ranges_set_intersection {
737       header "__algorithm/ranges_set_intersection.h"
738       export std.functional.ranges_operations
739       export std.algorithm.in_in_out_result
740     }
741     module ranges_set_symmetric_difference {
742       header "__algorithm/ranges_set_symmetric_difference.h"
743       export std.functional.ranges_operations
744       export std.algorithm.in_in_out_result
745     }
746     module ranges_set_union {
747       header "__algorithm/ranges_set_union.h"
748       export std.functional.ranges_operations
749       export std.algorithm.in_in_out_result
750     }
751     module ranges_shuffle {
752       header "__algorithm/ranges_shuffle.h"
753     }
754     module ranges_sort_heap {
755       header "__algorithm/ranges_sort_heap.h"
756       export std.functional.ranges_operations
757     }
758     module ranges_sort {
759       header "__algorithm/ranges_sort.h"
760       export std.functional.ranges_operations
761     }
762     module ranges_stable_partition {
763       header "__algorithm/ranges_stable_partition.h"
764     }
765     module ranges_stable_sort {
766       header "__algorithm/ranges_stable_sort.h"
767       export std.functional.ranges_operations
768     }
769     module ranges_starts_with {
770       header "__algorithm/ranges_starts_with.h"
771     }
772     module ranges_swap_ranges {
773       header "__algorithm/ranges_swap_ranges.h"
774       export std.algorithm.in_in_result
775     }
776     module ranges_transform {
777       header "__algorithm/ranges_transform.h"
778       export std.algorithm.in_out_result
779       export std.algorithm.in_in_out_result
780     }
781     module ranges_unique_copy {
782       header "__algorithm/ranges_unique_copy.h"
783     }
784     module ranges_unique {
785       header "__algorithm/ranges_unique.h"
786     }
787     module ranges_upper_bound {
788       header "__algorithm/ranges_upper_bound.h"
789       export std.functional.ranges_operations
790     }
791     module remove_copy_if                         { header "__algorithm/remove_copy_if.h" }
792     module remove_copy                            { header "__algorithm/remove_copy.h" }
793     module remove_if                              { header "__algorithm/remove_if.h" }
794     module remove                                 { header "__algorithm/remove.h" }
795     module replace_copy_if                        { header "__algorithm/replace_copy_if.h" }
796     module replace_copy                           { header "__algorithm/replace_copy.h" }
797     module replace_if                             { header "__algorithm/replace_if.h" }
798     module replace                                { header "__algorithm/replace.h" }
799     module reverse_copy                           { header "__algorithm/reverse_copy.h" }
800     module reverse                                { header "__algorithm/reverse.h" }
801     module rotate_copy                            { header "__algorithm/rotate_copy.h" }
802     module rotate                                 { header "__algorithm/rotate.h" }
803     module sample                                 { header "__algorithm/sample.h" }
804     module search_n                               { header "__algorithm/search_n.h" }
805     module search                                 { header "__algorithm/search.h" }
806     module set_difference                         { header "__algorithm/set_difference.h" }
807     module set_intersection                       { header "__algorithm/set_intersection.h" }
808     module set_symmetric_difference               { header "__algorithm/set_symmetric_difference.h" }
809     module set_union                              { header "__algorithm/set_union.h" }
810     module shift_left                             { header "__algorithm/shift_left.h" }
811     module shift_right                            { header "__algorithm/shift_right.h" }
812     module shuffle                                { header "__algorithm/shuffle.h" }
813     module sift_down                              { header "__algorithm/sift_down.h" }
814     module simd_utils                             { header "__algorithm/simd_utils.h" }
815     module sort_heap                              { header "__algorithm/sort_heap.h" }
816     module sort                                   { header "__algorithm/sort.h" }
817     module stable_partition                       { header "__algorithm/stable_partition.h" }
818     module stable_sort                            { header "__algorithm/stable_sort.h" }
819     module swap_ranges                            { header "__algorithm/swap_ranges.h" }
820     module three_way_comp_ref_type                { header "__algorithm/three_way_comp_ref_type.h" }
821     module transform                              { header "__algorithm/transform.h" }
822     module uniform_random_bit_generator_adaptor   { header "__algorithm/uniform_random_bit_generator_adaptor.h" }
823     module unique_copy                            { header "__algorithm/unique_copy.h" }
824     module unique                                 { header "__algorithm/unique.h" }
825     module unwrap_iter                            { header "__algorithm/unwrap_iter.h" }
826     module unwrap_range                           { header "__algorithm/unwrap_range.h" }
827     module upper_bound                            { header "__algorithm/upper_bound.h" }
829     header "algorithm"
830     export *
831   } // module algorithm
833   module any {
834     header "any"
835     export *
836   }
838   module array {
839     module fwd { header "__fwd/array.h" }
841     header "array"
842     export *
843   }
845   module atomic {
846     module aliases                { header "__atomic/aliases.h" }
847     module atomic_flag            { header "__atomic/atomic_flag.h" }
848     module atomic_init            { header "__atomic/atomic_init.h" }
849     module atomic_lock_free       { header "__atomic/atomic_lock_free.h" }
850     module atomic_ref             { header "__atomic/atomic_ref.h" }
851     module atomic_sync            { header "__atomic/atomic_sync.h" }
852     module atomic {
853       header "__atomic/atomic.h"
854       export std.atomic.atomic_base // most of std::atomic methods are defined there
855     }
856     module check_memory_order     { header "__atomic/check_memory_order.h" }
857     module contention_t           { header "__atomic/contention_t.h" }
858     module cxx_atomic_impl        { header "__atomic/cxx_atomic_impl.h" }
859     module fence                  { header "__atomic/fence.h" }
860     module is_always_lock_free    { header "__atomic/is_always_lock_free.h" }
861     module kill_dependency        { header "__atomic/kill_dependency.h" }
862     module memory_order           { header "__atomic/memory_order.h" }
863     module to_gcc_order           { header "__atomic/to_gcc_order.h" }
865     header "atomic"
866     export *
867   }
869   module barrier {
870     header "barrier"
871     export *
872   }
874   module bit {
875     module bit_cast         { header "__bit/bit_cast.h" }
876     module bit_ceil         { header "__bit/bit_ceil.h" }
877     module bit_floor        { header "__bit/bit_floor.h" }
878     module bit_log2         { header "__bit/bit_log2.h" }
879     module bit_width        { header "__bit/bit_width.h" }
880     module blsr             { header "__bit/blsr.h" }
881     module byteswap         { header "__bit/byteswap.h" }
882     module countl           { header "__bit/countl.h" }
883     module countr           { header "__bit/countr.h" }
884     module endian           { header "__bit/endian.h" }
885     module has_single_bit   { header "__bit/has_single_bit.h" }
886     module invert_if        { header "__bit/invert_if.h" }
887     module popcount         { header "__bit/popcount.h" }
888     module rotate           { header "__bit/rotate.h" }
890     header "bit"
891     export *
892   }
894   module bitset {
895     header "bitset"
896     export *
897   }
899   module charconv {
900     module chars_format               { header "__charconv/chars_format.h" }
901     module from_chars_floating_point  { header "__charconv/from_chars_floating_point.h" }
902     module from_chars_integral        { header "__charconv/from_chars_integral.h" }
903     module from_chars_result          { header "__charconv/from_chars_result.h" }
904     module tables                     { header "__charconv/tables.h" }
905     module to_chars                   { header "__charconv/to_chars.h" }
906     module to_chars_base_10           { header "__charconv/to_chars_base_10.h" }
907     module to_chars_floating_point    { header "__charconv/to_chars_floating_point.h" }
908     module to_chars_integral          { header "__charconv/to_chars_integral.h" }
909     module to_chars_result            { header "__charconv/to_chars_result.h" }
910     module traits                     { header "__charconv/traits.h" }
912     header "charconv"
913     export *
914   }
916   module chrono {
917     module calendar                   { header "__chrono/calendar.h" }
918     module concepts                   { header "__chrono/concepts.h" }
919     module convert_to_timespec        { header "__chrono/convert_to_timespec.h" }
920     module convert_to_tm              { header "__chrono/convert_to_tm.h" }
921     module day                        { header "__chrono/day.h" }
922     module duration                   { header "__chrono/duration.h" }
923     module exception                  { header "__chrono/exception.h" }
924     module file_clock                 { header "__chrono/file_clock.h" }
925     module formatter                  { header "__chrono/formatter.h" }
926     module hh_mm_ss                   { header "__chrono/hh_mm_ss.h" }
927     module high_resolution_clock {
928       header "__chrono/high_resolution_clock.h"
929       export *
930     }
931     module leap_second {
932       header "__chrono/leap_second.h"
933     }
934     module literals {
935       header "__chrono/literals.h"
936     }
937     module local_info {
938       header "__chrono/local_info.h"
939       export std.chrono.sys_info
940     }
941     module month_weekday              { header "__chrono/month_weekday.h" }
942     module month                      { header "__chrono/month.h" }
943     module monthday                   { header "__chrono/monthday.h" }
944     module ostream                    { header "__chrono/ostream.h" }
945     module parser_std_format_spec     { header "__chrono/parser_std_format_spec.h" }
946     module statically_widen           { header "__chrono/statically_widen.h" }
947     module steady_clock {
948       header "__chrono/steady_clock.h"
949       export std.chrono.time_point
950     }
951     module sys_info {
952       header "__chrono/sys_info.h"
953     }
954     module system_clock {
955       header "__chrono/system_clock.h"
956       export std.chrono.time_point
957     }
958     module time_point                 { header "__chrono/time_point.h" }
959     module time_zone_link             { header "__chrono/time_zone_link.h" }
960     module time_zone                  { header "__chrono/time_zone.h" }
961     module tzdb_list {
962       header "__chrono/tzdb_list.h"
963       export std.forward_list // forward_list iterators are used to implement this API
964       export std.string_view // by-value argument of type std::string_view
965     }
966     module tzdb {
967       header "__chrono/tzdb.h"
968       export std.string // public data member of type std::string
969       export std.vector // public data members of type std::vector
970     }
971     module weekday                    { header "__chrono/weekday.h" }
972     module year_month_day             { header "__chrono/year_month_day.h" }
973     module year_month_weekday         { header "__chrono/year_month_weekday.h" }
974     module year_month                 { header "__chrono/year_month.h" }
975     module year                       { header "__chrono/year.h" }
976     module zoned_time                 { header "__chrono/zoned_time.h" }
978     header "chrono"
979     export *
980   } // module chrono
982   module codecvt {
983     header "codecvt"
984     export *
985   }
987   module compare {
988     module common_comparison_category       { header "__compare/common_comparison_category.h" }
989     module compare_partial_order_fallback   { header "__compare/compare_partial_order_fallback.h" }
990     module compare_strong_order_fallback    { header "__compare/compare_strong_order_fallback.h" }
991     module compare_three_way                { header "__compare/compare_three_way.h" }
992     module compare_three_way_result         { header "__compare/compare_three_way_result.h" }
993     module compare_weak_order_fallback      { header "__compare/compare_weak_order_fallback.h" }
994     module is_eq                            { header "__compare/is_eq.h" }
995     module ordering                         { header "__compare/ordering.h" }
996     module partial_order                    { header "__compare/partial_order.h" }
997     module strong_order                     { header "__compare/strong_order.h" }
998     module synth_three_way                  { header "__compare/synth_three_way.h" }
999     module three_way_comparable             { header "__compare/three_way_comparable.h" }
1000     module weak_order                       { header "__compare/weak_order.h" }
1002     header "compare"
1003     export *
1004   }
1006   module complex {
1007     module fwd { header "__fwd/complex.h" }
1009     header "complex"
1010     export *
1011   }
1013   module concepts {
1014     module arithmetic               { header "__concepts/arithmetic.h" }
1015     module assignable               { header "__concepts/assignable.h" }
1016     module boolean_testable         { header "__concepts/boolean_testable.h" }
1017     module class_or_enum            { header "__concepts/class_or_enum.h" }
1018     module common_reference_with    { header "__concepts/common_reference_with.h" }
1019     module common_with              { header "__concepts/common_with.h" }
1020     module constructible            { header "__concepts/constructible.h" }
1021     module convertible_to           { header "__concepts/convertible_to.h" }
1022     module copyable                 { header "__concepts/copyable.h" }
1023     module derived_from             { header "__concepts/derived_from.h" }
1024     module destructible             { header "__concepts/destructible.h" }
1025     module different_from           { header "__concepts/different_from.h" }
1026     module equality_comparable      { header "__concepts/equality_comparable.h" }
1027     module invocable                { header "__concepts/invocable.h" }
1028     module movable                  { header "__concepts/movable.h" }
1029     module predicate                { header "__concepts/predicate.h" }
1030     module regular                  { header "__concepts/regular.h" }
1031     module relation                 { header "__concepts/relation.h" }
1032     module same_as                  { header "__concepts/same_as.h" }
1033     module semiregular              { header "__concepts/semiregular.h" }
1034     module swappable                { header "__concepts/swappable.h" }
1035     module totally_ordered          { header "__concepts/totally_ordered.h" }
1037     header "concepts"
1038     export *
1039   }
1041   module condition_variable {
1042     module condition_variable   { header "__condition_variable/condition_variable.h" }
1044     header "condition_variable"
1045     export *
1046   }
1048   module cassert {
1049     textual header "cassert" // NDEBUG requires textual inclusion
1050   }
1052   module ccomplex {
1053     header "ccomplex"
1054     export *
1055   }
1057   module cctype {
1058     header "cctype"
1059     export *
1060   }
1062   module cerrno {
1063     header "cerrno"
1064     export *
1065   }
1067   module cfenv {
1068     header "cfenv"
1069     export *
1070   }
1072   module cfloat {
1073     header "cfloat"
1074     export *
1075   }
1077   module cinttypes {
1078     header "cinttypes"
1079     export *
1080   }
1082   module ciso646 {
1083     header "ciso646"
1084     export *
1085   }
1087   module climits {
1088     header "climits"
1089     export *
1090   }
1092   module clocale {
1093     header "clocale"
1094     export *
1095   }
1097   module cmath {
1098     header "cmath"
1099     export *
1100   }
1102   // TODO: Make non-textual. This seems to cause problems when compiling against Glibc.
1103   module csetjmp {
1104     textual header "csetjmp"
1105   }
1107   module csignal {
1108     header "csignal"
1109     export *
1110   }
1112   module cstdalign {
1113     header "cstdalign"
1114     export *
1115   }
1117   module cstdarg {
1118     header "cstdarg"
1119     export *
1120   }
1122   module cstdbool {
1123     header "cstdbool"
1124     export *
1125   }
1127   module cstddef {
1128     header "cstddef"
1129     export *
1130   }
1132   module cstdio {
1133     header "cstdio"
1134     export *
1135   }
1137   module cstdlib {
1138     header "cstdlib"
1139     export *
1140   }
1142   module cstring {
1143     header "cstring"
1144     export *
1145   }
1147   module ctgmath {
1148     header "ctgmath"
1149     export *
1150   }
1152   module ctime {
1153     header "ctime"
1154     export *
1155   }
1157   module cuchar {
1158     header "cuchar"
1159     export *
1160   }
1162   module cwchar {
1163     header "cwchar"
1164     export *
1165   }
1167   module cwctype {
1168     header "cwctype"
1169     export *
1170   }
1172   module deque {
1173     module fwd { header "__fwd/deque.h" }
1175     header "deque"
1176     export *
1177   }
1179   module exception {
1180     module exception          { header "__exception/exception.h" }
1181     module exception_ptr      { header "__exception/exception_ptr.h" }
1182     module nested_exception   { header "__exception/nested_exception.h" }
1183     module operations         { header "__exception/operations.h" }
1184     module terminate          { header "__exception/terminate.h" }
1186     header "exception"
1187     export *
1188   }
1190   module execution {
1191     header "execution"
1192     export *
1193   }
1195   module expected {
1196     module bad_expected_access    { header "__expected/bad_expected_access.h" }
1197     module expected               { header "__expected/expected.h" }
1198     module unexpect               { header "__expected/unexpect.h" }
1199     module unexpected             { header "__expected/unexpected.h" }
1201     header "expected"
1202     export *
1203   }
1205   module filesystem {
1206     module copy_options                   { header "__filesystem/copy_options.h" }
1207     module directory_entry                { header "__filesystem/directory_entry.h" }
1208     module directory_iterator             { header "__filesystem/directory_iterator.h" }
1209     module directory_options              { header "__filesystem/directory_options.h" }
1210     module file_status                    { header "__filesystem/file_status.h" }
1211     module file_time_type                 { header "__filesystem/file_time_type.h" }
1212     module file_type                      { header "__filesystem/file_type.h" }
1213     module filesystem_error               { header "__filesystem/filesystem_error.h" }
1214     module operations                     { header "__filesystem/operations.h" }
1215     module path_iterator                  { header "__filesystem/path_iterator.h" }
1216     module path                           {
1217       header "__filesystem/path.h"
1218       export std.string // returned by various methods of filesystem::path
1219     }
1220     module perm_options                   { header "__filesystem/perm_options.h" }
1221     module perms                          { header "__filesystem/perms.h" }
1222     module recursive_directory_iterator   { header "__filesystem/recursive_directory_iterator.h" }
1223     module space_info                     { header "__filesystem/space_info.h" }
1224     module u8path                         { header "__filesystem/u8path.h" }
1226     header "filesystem"
1227     export *
1228   }
1230   module flat_map {
1231     module flat_map                       { header "__flat_map/flat_map.h" }
1232     module sorted_unique                  { header "__flat_map/sorted_unique.h" }
1234     header "flat_map"
1235     export *
1236   }
1238   module format {
1239     module buffer                             { header "__format/buffer.h" }
1240     module concepts                           { header "__format/concepts.h" }
1241     module container_adaptor                  { header "__format/container_adaptor.h" }
1242     module enable_insertable                  { header "__format/enable_insertable.h" }
1243     module escaped_output_table               { header "__format/escaped_output_table.h" }
1244     module extended_grapheme_cluster_table    { header "__format/extended_grapheme_cluster_table.h" }
1245     module format_arg                         { header "__format/format_arg.h" }
1246     module format_arg_store                   { header "__format/format_arg_store.h" }
1247     module format_args                        { header "__format/format_args.h" }
1248     module format_context {
1249       header "__format/format_context.h"
1250       export std.optional // default argument for __format_context_create
1251     }
1252     module format_error {
1253       header "__format/format_error.h"
1254     }
1255     module format_functions {
1256       header "__format/format_functions.h"
1257       export std.string // returned by the functions in that header
1258     }
1259     module format_parse_context               { header "__format/format_parse_context.h" }
1260     module format_string                      { header "__format/format_string.h" }
1261     module format_to_n_result                 { header "__format/format_to_n_result.h" }
1262     module formatter                          { header "__format/formatter.h" }
1263     module formatter_bool                     { header "__format/formatter_bool.h" }
1264     module formatter_char                     { header "__format/formatter_char.h" }
1265     module formatter_floating_point           { header "__format/formatter_floating_point.h" }
1266     module formatter_integer                  { header "__format/formatter_integer.h" }
1267     module formatter_integral                 { header "__format/formatter_integral.h" }
1268     module formatter_output                   { header "__format/formatter_output.h" }
1269     module formatter_pointer                  { header "__format/formatter_pointer.h" }
1270     module formatter_string                   { header "__format/formatter_string.h" }
1271     module formatter_tuple                    { header "__format/formatter_tuple.h" }
1272     module fwd                                { header "__fwd/format.h" }
1273     module indic_conjunct_break_table         { header "__format/indic_conjunct_break_table.h" }
1274     module parser_std_format_spec             { header "__format/parser_std_format_spec.h" }
1275     module range_default_formatter            { header "__format/range_default_formatter.h" }
1276     module range_formatter                    { header "__format/range_formatter.h" }
1277     module unicode                            { header "__format/unicode.h" }
1278     module width_estimation_table             { header "__format/width_estimation_table.h" }
1279     module write_escaped                      { header "__format/write_escaped.h" }
1281     header "format"
1282     export *
1283   } // module format
1285   module forward_list {
1286     header "forward_list"
1287     export *
1288   }
1290   module fstream {
1291     module fwd { header "__fwd/fstream.h" }
1293     header "fstream"
1294     export *
1295   }
1297   module functional {
1298     module binary_function              { header "__functional/binary_function.h" }
1299     module binary_negate                { header "__functional/binary_negate.h" }
1300     module bind_back {
1301       header "__functional/bind_back.h"
1302       export std.functional.perfect_forward // inherited from and using its operators
1303     }
1304     module bind_front {
1305       header "__functional/bind_front.h"
1306       export std.functional.perfect_forward // inherited from and using its operators
1307     }
1308     module bind                         { header "__functional/bind.h" }
1309     module binder1st                    { header "__functional/binder1st.h" }
1310     module binder2nd                    { header "__functional/binder2nd.h" }
1311     module boyer_moore_searcher {
1312       header "__functional/boyer_moore_searcher.h"
1313       export std.memory.shared_ptr
1314     }
1315     module compose {
1316       header "__functional/compose.h"
1317       export std.functional.perfect_forward // inherited from and using its operators
1318     }
1319     module default_searcher             { header "__functional/default_searcher.h" }
1320     module function                     { header "__functional/function.h" }
1321     module hash                         { header "__functional/hash.h" }
1322     module identity                     { header "__functional/identity.h" }
1323     module invoke                       { header "__functional/invoke.h" }
1324     module is_transparent               { header "__functional/is_transparent.h" }
1325     module mem_fn                       { header "__functional/mem_fn.h" }
1326     module mem_fun_ref                  { header "__functional/mem_fun_ref.h" }
1327     module not_fn {
1328       header "__functional/not_fn.h"
1329       export std.functional.perfect_forward // inherited from and using its operators
1330     }
1331     module operations                   { header "__functional/operations.h" }
1332     module perfect_forward {
1333       header "__functional/perfect_forward.h"
1334       export std.tuple
1335     }
1336     module pointer_to_binary_function   { header "__functional/pointer_to_binary_function.h" }
1337     module pointer_to_unary_function    { header "__functional/pointer_to_unary_function.h" }
1338     module ranges_operations            { header "__functional/ranges_operations.h" }
1339     module reference_wrapper            { header "__functional/reference_wrapper.h" }
1340     module unary_function               { header "__functional/unary_function.h" }
1341     module unary_negate                 { header "__functional/unary_negate.h" }
1342     module weak_result_type             { header "__functional/weak_result_type.h" }
1344     header "functional"
1345     export *
1346   } // module functional
1348   module future {
1349     header "future"
1350     export *
1351   }
1353   module initializer_list {
1354     header "initializer_list"
1355     export *
1356   }
1358   module iomanip {
1359     header "iomanip"
1360     export *
1361   }
1363   module ios {
1364     module fwd  { header "__fwd/ios.h" }
1365     module fpos { header "__ios/fpos.h" }
1367     header "ios"
1368     export *
1369   }
1371   module iosfwd {
1372     header "iosfwd"
1373     export *
1374   }
1376   module iostream {
1377     header "iostream"
1378     export *
1379   }
1381   module istream {
1382     module fwd { header "__fwd/istream.h" }
1384     header "istream"
1385     export std.ios // base class
1386   }
1388   module iterator {
1389     module access                     { header "__iterator/access.h" }
1390     module advance                    { header "__iterator/advance.h" }
1391     module aliasing_iterator          { header "__iterator/aliasing_iterator.h" }
1392     module back_insert_iterator       { header "__iterator/back_insert_iterator.h" }
1393     module bounded_iter               { header "__iterator/bounded_iter.h" }
1394     module common_iterator            { header "__iterator/common_iterator.h" }
1395     module concepts {
1396       header "__iterator/concepts.h"
1397       export std_core.type_traits.common_reference
1398     }
1399     module counted_iterator           { header "__iterator/counted_iterator.h" }
1400     module cpp17_iterator_concepts    { header "__iterator/cpp17_iterator_concepts.h" }
1401     module data                       { header "__iterator/data.h" }
1402     module default_sentinel           { header "__iterator/default_sentinel.h" }
1403     module distance                   { header "__iterator/distance.h" }
1404     module empty                      { header "__iterator/empty.h" }
1405     module erase_if_container         { header "__iterator/erase_if_container.h" }
1406     module front_insert_iterator      { header "__iterator/front_insert_iterator.h" }
1407     module incrementable_traits       { header "__iterator/incrementable_traits.h" }
1408     module indirectly_comparable      { header "__iterator/indirectly_comparable.h" }
1409     module insert_iterator            { header "__iterator/insert_iterator.h" }
1410     module istream_iterator           { header "__iterator/istream_iterator.h" }
1411     module istreambuf_iterator        {
1412       header "__iterator/istreambuf_iterator.h"
1413       export std.string.char_traits
1414     }
1415     module iter_move                  { header "__iterator/iter_move.h" }
1416     module iter_swap                  { header "__iterator/iter_swap.h" }
1417     module iterator_traits {
1418       header "__iterator/iterator_traits.h"
1419       export std_core.type_traits.integral_constant
1420     }
1421     module iterator_with_data         { header "__iterator/iterator_with_data.h" }
1422     module iterator                   { header "__iterator/iterator.h" }
1423     module mergeable                  { header "__iterator/mergeable.h" }
1424     module move_iterator              { header "__iterator/move_iterator.h" }
1425     module move_sentinel              { header "__iterator/move_sentinel.h" }
1426     module next                       { header "__iterator/next.h" }
1427     module ostream_iterator           { header "__iterator/ostream_iterator.h" }
1428     module ostreambuf_iterator {
1429       header "__iterator/ostreambuf_iterator.h"
1430       export iosfwd // for default template argument of ostreambuf_iterator
1431     }
1432     module permutable                 { header "__iterator/permutable.h" }
1433     module prev                       { header "__iterator/prev.h" }
1434     module projected                  { header "__iterator/projected.h" }
1435     module ranges_iterator_traits     { header "__iterator/ranges_iterator_traits.h" }
1436     module readable_traits            { header "__iterator/readable_traits.h" }
1437     module reverse_access             { header "__iterator/reverse_access.h" }
1438     module reverse_iterator           { header "__iterator/reverse_iterator.h" }
1439     module segmented_iterator         { header "__iterator/segmented_iterator.h" }
1440     module size                       { header "__iterator/size.h" }
1441     module sortable                   { header "__iterator/sortable.h" }
1442     module static_bounded_iter        { header "__iterator/static_bounded_iter.h" }
1443     module unreachable_sentinel       { header "__iterator/unreachable_sentinel.h" }
1444     module wrap_iter                  { header "__iterator/wrap_iter.h" }
1446     header "iterator"
1447     export *
1448   }
1450   module latch {
1451     header "latch"
1452     export *
1453   }
1455   module list {
1456     header "list"
1457     export *
1458   }
1460   module locale {
1461     header "locale"
1463     module locale_guard   { header "__locale_dir/locale_guard.h" }
1464     module pad_and_output { header "__locale_dir/pad_and_output.h" }
1466     module support {
1467       header "__locale_dir/locale_base_api.h"
1468       export *
1469     }
1471     module support_impl {
1472       textual header "__locale_dir/support/apple.h"
1473       textual header "__locale_dir/support/bsd_like.h"
1474       textual header "__locale_dir/support/freebsd.h"
1475     }
1477     module locale_base_api {
1478       textual header "__locale_dir/locale_base_api/android.h"
1479       textual header "__locale_dir/locale_base_api/bsd_locale_defaults.h"
1480       textual header "__locale_dir/locale_base_api/bsd_locale_fallbacks.h"
1481       textual header "__locale_dir/locale_base_api/fuchsia.h"
1482       textual header "__locale_dir/locale_base_api/ibm.h"
1483       textual header "__locale_dir/locale_base_api/musl.h"
1484       textual header "__locale_dir/locale_base_api/openbsd.h"
1485       textual header "__locale_dir/locale_base_api/win32.h"
1486     }
1487     export *
1488   }
1490   // TODO: Understand why this needs to live in its own module
1491   module locale_base [system] {
1492     header "__locale"
1493     export *
1494   }
1496   module map {
1497     header "map"
1498     export *
1499   }
1501   module mdspan {
1502     module default_accessor   { header "__mdspan/default_accessor.h" }
1503     module extents            { header "__mdspan/extents.h" }
1504     module fwd                { header "__fwd/mdspan.h" }
1505     module layout_left        { header "__mdspan/layout_left.h" }
1506     module layout_right       { header "__mdspan/layout_right.h" }
1507     module layout_stride      { header "__mdspan/layout_stride.h" }
1508     module mdspan {
1509       header "__mdspan/mdspan.h"
1510       export std.array // returned by some methods
1511     }
1513     header "mdspan"
1514     export *
1515   }
1517   module memory {
1518     module addressof                          { header "__memory/addressof.h" }
1519     module align                              { header "__memory/align.h" }
1520     module aligned_alloc                      { header "__memory/aligned_alloc.h" }
1521     module allocate_at_least                  { header "__memory/allocate_at_least.h" }
1522     module allocation_guard                   { header "__memory/allocation_guard.h" }
1523     module allocator                          { header "__memory/allocator.h" }
1524     module allocator_arg_t                    { header "__memory/allocator_arg_t.h" }
1525     module allocator_destructor               { header "__memory/allocator_destructor.h" }
1526     module allocator_traits                   { header "__memory/allocator_traits.h" }
1527     module array_cookie                       { header "__memory/array_cookie.h" }
1528     module assume_aligned                     { header "__memory/assume_aligned.h" }
1529     module auto_ptr                           { header "__memory/auto_ptr.h" }
1530     module builtin_new_allocator              { header "__memory/builtin_new_allocator.h" }
1531     module compressed_pair                    { header "__memory/compressed_pair.h" }
1532     module concepts                           { header "__memory/concepts.h" }
1533     module construct_at                       { header "__memory/construct_at.h" }
1534     module destruct_n                         { header "__memory/destruct_n.h" }
1535     module fwd                                { header "__fwd/memory.h" }
1536     module inout_ptr                          { header "__memory/inout_ptr.h" }
1537     module noexcept_move_assign_container     { header "__memory/noexcept_move_assign_container.h" }
1538     module out_ptr                            { header "__memory/out_ptr.h" }
1539     module pointer_traits                     { header "__memory/pointer_traits.h" }
1540     module ranges_construct_at                { header "__memory/ranges_construct_at.h" }
1541     module ranges_uninitialized_algorithms {
1542       header "__memory/ranges_uninitialized_algorithms.h"
1543       export std.algorithm.in_out_result
1544     }
1545     module raw_storage_iterator               { header "__memory/raw_storage_iterator.h" }
1546     module shared_count                       { header "__memory/shared_count.h" }
1547     module shared_ptr                         { header "__memory/shared_ptr.h" }
1548     module swap_allocator                     { header "__memory/swap_allocator.h" }
1549     module temp_value                         { header "__memory/temp_value.h" }
1550     module temporary_buffer                   {
1551       header "__memory/temporary_buffer.h"
1552       export std.utility.pair // return type of std::get_temporary_buffer()
1553     }
1554     module uninitialized_algorithms {
1555       header "__memory/uninitialized_algorithms.h"
1556       export std.utility.pair
1557     }
1558     module unique_ptr {
1559       header "__memory/unique_ptr.h"
1560     }
1561     module unique_temporary_buffer {
1562       header "__memory/unique_temporary_buffer.h"
1563       export std.memory.unique_ptr
1564       export std_core.type_traits.is_constant_evaluated
1565     }
1566     module uses_allocator                     { header "__memory/uses_allocator.h" }
1567     module uses_allocator_construction        { header "__memory/uses_allocator_construction.h" }
1569     header "memory"
1570     export *
1571   }
1573   module memory_resource {
1574     module fwd                            { header "__fwd/memory_resource.h" }
1575     module memory_resource                { header "__memory_resource/memory_resource.h" }
1576     module monotonic_buffer_resource      { header "__memory_resource/monotonic_buffer_resource.h" }
1577     module polymorphic_allocator          { header "__memory_resource/polymorphic_allocator.h" }
1578     module pool_options                   { header "__memory_resource/pool_options.h" }
1579     module synchronized_pool_resource     { header "__memory_resource/synchronized_pool_resource.h" }
1580     module unsynchronized_pool_resource   { header "__memory_resource/unsynchronized_pool_resource.h" }
1582     header "memory_resource"
1583     export *
1584   }
1586   module mutex {
1587     module lock_guard     { header "__mutex/lock_guard.h" }
1588     module mutex          { header "__mutex/mutex.h" }
1589     module once_flag      { header "__mutex/once_flag.h" }
1590     module tag_types      { header "__mutex/tag_types.h" }
1591     module unique_lock    { header "__mutex/unique_lock.h" }
1593     header "mutex"
1594     export *
1595   }
1597   module new {
1598     header "new"
1599     export *
1600   }
1602   module numbers {
1603     header "numbers"
1604     export *
1605   }
1607   module numeric {
1608     module accumulate                 { header "__numeric/accumulate.h" }
1609     module adjacent_difference        { header "__numeric/adjacent_difference.h" }
1610     module exclusive_scan             { header "__numeric/exclusive_scan.h" }
1611     module gcd_lcm                    { header "__numeric/gcd_lcm.h" }
1612     module inclusive_scan             { header "__numeric/inclusive_scan.h" }
1613     module inner_product              { header "__numeric/inner_product.h" }
1614     module iota                       { header "__numeric/iota.h" }
1615     module midpoint                   { header "__numeric/midpoint.h" }
1616     module partial_sum                { header "__numeric/partial_sum.h" }
1617     module pstl                       { header "__numeric/pstl.h" }
1618     module reduce                     { header "__numeric/reduce.h" }
1619     module saturation_arithmetic      { header "__numeric/saturation_arithmetic.h" }
1620     module transform_exclusive_scan   { header "__numeric/transform_exclusive_scan.h" }
1621     module transform_inclusive_scan   { header "__numeric/transform_inclusive_scan.h" }
1622     module transform_reduce           { header "__numeric/transform_reduce.h" }
1624     header "numeric"
1625     export *
1626   }
1628   module optional {
1629     header "optional"
1630     export *
1631   }
1633   module ostream {
1634     module basic_ostream {
1635       header "__ostream/basic_ostream.h"
1636       export std.ios // base class
1637     }
1638     module fwd {
1639       header "__fwd/ostream.h"
1640     }
1641     module print {
1642       header "__ostream/print.h"
1643       export *
1644     }
1645     module put_character_sequence { header "__ostream/put_character_sequence.h" }
1647     header "ostream"
1648     export *
1649   }
1651   module print {
1652     header "print"
1653     export *
1654   }
1656   module queue {
1657     module fwd { header "__fwd/queue.h" }
1659     header "queue"
1660     export *
1661   }
1663   module random {
1664     module bernoulli_distribution             { header "__random/bernoulli_distribution.h" }
1665     module binomial_distribution              { header "__random/binomial_distribution.h" }
1666     module cauchy_distribution                { header "__random/cauchy_distribution.h" }
1667     module chi_squared_distribution           { header "__random/chi_squared_distribution.h" }
1668     module clamp_to_integral                  { header "__random/clamp_to_integral.h" }
1669     module default_random_engine              { header "__random/default_random_engine.h" }
1670     module discard_block_engine               { header "__random/discard_block_engine.h" }
1671     module discrete_distribution              { header "__random/discrete_distribution.h" }
1672     module exponential_distribution           { header "__random/exponential_distribution.h" }
1673     module extreme_value_distribution         { header "__random/extreme_value_distribution.h" }
1674     module fisher_f_distribution              { header "__random/fisher_f_distribution.h" }
1675     module gamma_distribution                 { header "__random/gamma_distribution.h" }
1676     module generate_canonical                 { header "__random/generate_canonical.h" }
1677     module geometric_distribution             { header "__random/geometric_distribution.h" }
1678     module independent_bits_engine            { header "__random/independent_bits_engine.h" }
1679     module is_seed_sequence                   { header "__random/is_seed_sequence.h" }
1680     module is_valid {
1681       header "__random/is_valid.h"
1682       export std_core.type_traits.integral_constant
1683     }
1684     module knuth_b                            { header "__random/knuth_b.h" }
1685     module linear_congruential_engine         { header "__random/linear_congruential_engine.h" }
1686     module log2                               { header "__random/log2.h" }
1687     module lognormal_distribution             { header "__random/lognormal_distribution.h" }
1688     module mersenne_twister_engine            { header "__random/mersenne_twister_engine.h" }
1689     module negative_binomial_distribution     { header "__random/negative_binomial_distribution.h" }
1690     module normal_distribution                { header "__random/normal_distribution.h" }
1691     module piecewise_constant_distribution    { header "__random/piecewise_constant_distribution.h" }
1692     module piecewise_linear_distribution      { header "__random/piecewise_linear_distribution.h" }
1693     module poisson_distribution               { header "__random/poisson_distribution.h" }
1694     module random_device                      { header "__random/random_device.h" }
1695     module ranlux                             { header "__random/ranlux.h" }
1696     module seed_seq                           { header "__random/seed_seq.h" }
1697     module shuffle_order_engine               { header "__random/shuffle_order_engine.h" }
1698     module student_t_distribution             { header "__random/student_t_distribution.h" }
1699     module subtract_with_carry_engine         { header "__random/subtract_with_carry_engine.h" }
1700     module uniform_int_distribution           { header "__random/uniform_int_distribution.h" }
1701     module uniform_random_bit_generator       { header "__random/uniform_random_bit_generator.h" }
1702     module uniform_real_distribution          { header "__random/uniform_real_distribution.h" }
1703     module weibull_distribution               { header "__random/weibull_distribution.h" }
1705     header "random"
1706     export *
1707   }
1709   module ranges {
1710     module access                         { header "__ranges/access.h" }
1711     module all                            { header "__ranges/all.h" }
1712     module as_rvalue_view                 { header "__ranges/as_rvalue_view.h" }
1713     module chunk_by_view {
1714       header "__ranges/chunk_by_view.h"
1715       export std.functional.bind_back
1716     }
1717     module common_view                    { header "__ranges/common_view.h" }
1718     module concepts                       { header "__ranges/concepts.h" }
1719     module container_compatible_range     { header "__ranges/container_compatible_range.h" }
1720     module counted {
1721       header "__ranges/counted.h"
1722       export std.span            // return type of views::counted
1723       export std.ranges.subrange // return type of views::counted
1724     }
1725     module dangling {
1726       header "__ranges/dangling.h"
1727     }
1728     module data {
1729       header "__ranges/data.h"
1730     }
1731     module drop_view {
1732       header "__ranges/drop_view.h"
1733       export std.functional.bind_back
1734     }
1735     module drop_while_view {
1736       header "__ranges/drop_while_view.h"
1737       export std.functional.bind_back
1738     }
1739     module elements_view                  { header "__ranges/elements_view.h" }
1740     module empty                          { header "__ranges/empty.h" }
1741     module empty_view                     { header "__ranges/empty_view.h" }
1742     module enable_borrowed_range          { header "__ranges/enable_borrowed_range.h" }
1743     module enable_view                    { header "__ranges/enable_view.h" }
1744     module filter_view {
1745       header "__ranges/filter_view.h"
1746       export std.functional.bind_back
1747     }
1748     module from_range                     { header "__ranges/from_range.h" }
1749     module iota_view                      { header "__ranges/iota_view.h" }
1750     module istream_view                   { header "__ranges/istream_view.h" }
1751     module join_view                      { header "__ranges/join_view.h" }
1752     module lazy_split_view {
1753       header "__ranges/lazy_split_view.h"
1754       export std.functional.bind_back
1755     }
1756     module movable_box                    { header "__ranges/movable_box.h" }
1757     module non_propagating_cache          { header "__ranges/non_propagating_cache.h" }
1758     module owning_view                    { header "__ranges/owning_view.h" }
1759     module range_adaptor                  { header "__ranges/range_adaptor.h" }
1760     module rbegin                         { header "__ranges/rbegin.h" }
1761     module ref_view                       { header "__ranges/ref_view.h" }
1762     module rend                           { header "__ranges/rend.h" }
1763     module repeat_view                    { header "__ranges/repeat_view.h" }
1764     module reverse_view                   { header "__ranges/reverse_view.h" }
1765     module single_view                    { header "__ranges/single_view.h" }
1766     module size                           { header "__ranges/size.h" }
1767     module split_view {
1768       header "__ranges/split_view.h"
1769       export std.functional.bind_back
1770     }
1771     module subrange {
1772       header "__ranges/subrange.h"
1773       export std.ranges.subrange_fwd
1774     }
1775     module subrange_fwd {
1776       header "__fwd/subrange.h"
1777     }
1778     module take_view {
1779       header "__ranges/take_view.h"
1780       export std.functional.bind_back
1781     }
1782     module take_while_view {
1783       header "__ranges/take_while_view.h"
1784       export std.functional.bind_back
1785     }
1786     module to {
1787       header "__ranges/to.h"
1788       export std.functional.bind_back
1789     }
1790     module transform_view {
1791       header "__ranges/transform_view.h"
1792       export std.functional.bind_back
1793     }
1794     module view_interface {
1795       header "__ranges/view_interface.h"
1796     }
1797     module views {
1798       header "__ranges/views.h"
1799     }
1800     module zip_view {
1801       header "__ranges/zip_view.h"
1802       export std.utility.pair
1803     }
1805     header "ranges"
1806     export *
1807   } // module ranges
1809   module ratio {
1810     header "ratio"
1811     export *
1812   }
1814   module regex {
1815     header "regex"
1816     export *
1817   }
1819   module scoped_allocator {
1820     header "scoped_allocator"
1821     export *
1822   }
1824   module semaphore {
1825     header "semaphore"
1826     export *
1827   }
1829   module set {
1830     header "set"
1831     export *
1832   }
1834   module shared_mutex {
1835     header "shared_mutex"
1836     export *
1837   }
1839   module source_location {
1840     header "source_location"
1841     export *
1842   }
1844   module span {
1845     module fwd { header "__fwd/span.h" }
1847     header "span"
1848     export *
1849   }
1851   module sstream {
1852     module fwd { header "__fwd/sstream.h" }
1854     header "sstream"
1855     export *
1856   }
1858   module stack {
1859     module fwd { header "__fwd/stack.h" }
1861     header "stack"
1862     export *
1863   }
1865   module stdexcept {
1866     header "stdexcept"
1867     export *
1868   }
1870   module stop_token {
1871     module atomic_unique_lock     { header "__stop_token/atomic_unique_lock.h" }
1872     module intrusive_list_view    { header "__stop_token/intrusive_list_view.h" }
1873     module intrusive_shared_ptr   { header "__stop_token/intrusive_shared_ptr.h" }
1874     module stop_callback          { header "__stop_token/stop_callback.h" }
1875     module stop_source            { header "__stop_token/stop_source.h" }
1876     module stop_state             { header "__stop_token/stop_state.h" }
1877     module stop_token             { header "__stop_token/stop_token.h" }
1879     header "stop_token"
1880     export *
1881   }
1883   module streambuf {
1884     module fwd { header "__fwd/streambuf.h" }
1886     header "streambuf"
1887     export *
1888   }
1890   module string {
1891     module char_traits              { header "__string/char_traits.h" }
1892     module constexpr_c_functions    { header "__string/constexpr_c_functions.h" }
1893     module extern_template_lists    { header "__string/extern_template_lists.h" }
1894     module fwd                      {  header "__fwd/string.h" }
1896     header "string"
1897     export *
1898   }
1900   module string_view {
1901     module fwd { header "__fwd/string_view.h" }
1903     header "string_view"
1904     export *
1905   }
1907   module strstream {
1908     header "strstream"
1909     export *
1910   }
1912   module syncstream {
1913     header "syncstream"
1914     export *
1915   }
1917   module system_error {
1918     module errc               { header "__system_error/errc.h" }
1919     module error_category     { header "__system_error/error_category.h" }
1920     module error_code {
1921       header "__system_error/error_code.h"
1922       export std.system_error.error_category // methods of error_code return that type
1923     }
1924     module error_condition    { header "__system_error/error_condition.h" }
1925     module system_error       { header "__system_error/system_error.h" }
1926     module throw_system_error { header "__system_error/throw_system_error.h" }
1928     header "system_error"
1929     export *
1930   }
1932   module thread {
1933     module formatter              { header "__thread/formatter.h" }
1934     module id                     { header "__thread/id.h" }
1935     module jthread                { header "__thread/jthread.h" }
1936     module poll_with_backoff      { header "__thread/poll_with_backoff.h" }
1937     module this_thread            { header "__thread/this_thread.h" }
1938     module thread                 { header "__thread/thread.h" }
1939     module timed_backoff_policy   { header "__thread/timed_backoff_policy.h" }
1941     module support {
1942       header "__thread/support.h"
1943       export *
1944     }
1945     module support_impl {
1946       textual header "__thread/support/c11.h"
1947       textual header "__thread/support/external.h"
1948       textual header "__thread/support/pthread.h"
1949       textual header "__thread/support/windows.h"
1950     }
1952     header "thread"
1953     export *
1954   }
1956   module tuple {
1957     module find_index               { header "__tuple/find_index.h" }
1958     module ignore                   { header "__tuple/ignore.h" }
1959     module make_tuple_types         { header "__tuple/make_tuple_types.h" }
1960     module sfinae_helpers           { header "__tuple/sfinae_helpers.h" }
1961     module tuple_element            { header "__tuple/tuple_element.h" }
1962     module tuple_indices            { header "__tuple/tuple_indices.h" }
1963     module tuple_like_ext           { header "__tuple/tuple_like_ext.h" }
1964     module tuple_like_no_subrange   { header "__tuple/tuple_like_no_subrange.h" }
1965     module tuple_like               { header "__tuple/tuple_like.h" }
1966     module tuple_size               { header "__tuple/tuple_size.h" }
1967     module tuple_types              { header "__tuple/tuple_types.h" }
1969     header "tuple"
1970     export *
1971   }
1973   module typeindex {
1974     header "typeindex"
1975     export *
1976   }
1978   module typeinfo {
1979     header "typeinfo"
1980     export *
1981   }
1983   module unordered_map {
1984     header "unordered_map"
1985     export *
1986   }
1988   module unordered_set {
1989     header "unordered_set"
1990     export *
1991   }
1993   module utility {
1994     module as_const                   { header "__utility/as_const.h" }
1995     module as_lvalue                  { header "__utility/as_lvalue.h" }
1996     module auto_cast                  {
1997       header "__utility/auto_cast.h"
1998       export std_core.type_traits.decay // the macro expansion uses that trait
1999     }
2000     module cmp                        { header "__utility/cmp.h" }
2001     module convert_to_integral        { header "__utility/convert_to_integral.h" }
2002     module exception_guard            { header "__utility/exception_guard.h" }
2003     module exchange                   { header "__utility/exchange.h" }
2004     module forward_like               { header "__utility/forward_like.h" }
2005     module in_place {
2006       header "__utility/in_place.h"
2007       export std_core.type_traits.integral_constant
2008     }
2009     module integer_sequence           { header "__utility/integer_sequence.h" }
2010     module is_pointer_in_range        { header "__utility/is_pointer_in_range.h" }
2011     module is_valid_range             { header "__utility/is_valid_range.h" }
2012     module move                       { header "__utility/move.h" }
2013     module no_destroy                 { header "__utility/no_destroy.h" }
2014     module pair                       { header "__utility/pair.h" }
2015     module piecewise_construct        { header "__utility/piecewise_construct.h" }
2016     module priority_tag               { header "__utility/priority_tag.h" }
2017     module private_constructor_tag    { header "__utility/private_constructor_tag.h" }
2018     module rel_ops                    { header "__utility/rel_ops.h" }
2019     module scope_guard                { header "__utility/scope_guard.h" }
2020     module small_buffer               { header "__utility/small_buffer.h" }
2021     module swap                       { header "__utility/swap.h" }
2022     module to_underlying              { header "__utility/to_underlying.h" }
2023     module unreachable                { header "__utility/unreachable.h" }
2025     header "utility"
2026     export *
2027   }
2029   module valarray {
2030     header "valarray"
2031     export *
2032   }
2034   module variant {
2035     module fwd       { header "__fwd/variant.h" }
2036     module monostate { header "__variant/monostate.h" }
2038     header "variant"
2039     export *
2040   }
2042   module vector {
2043     module fwd                   { header "__fwd/vector.h" }
2045     module comparison            { header "__vector/comparison.h" }
2046     module container_traits      { header "__vector/container_traits.h" }
2047     module erase                 { header "__vector/erase.h" }
2048     module vector_bool_formatter {
2049       header "__vector/vector_bool_formatter.h"
2051       export std.format.formatter
2052     }
2053     module pmr                   {
2054       header "__vector/pmr.h"
2056       export std.memory_resource.polymorphic_allocator
2057     }
2058     module swap                  { header "__vector/swap.h" }
2059     module vector_bool           {
2060       header "__vector/vector_bool.h"
2061       export std.bit_reference
2062       export std.memory.allocator
2063       export std.vector.comparison
2064       export std.vector.fwd
2065       export std.vector.swap
2066     }
2067     module vector                {
2068       header "__vector/vector.h"
2069       export std.iterator.bounded_iter
2070       export std.iterator.wrap_iter
2071       export std.memory.allocator
2072       export std.vector.comparison
2073       export std.vector.fwd
2074       export std.vector.swap
2075     }
2077     header "vector"
2078     export *
2079   }
2081   // Experimental C++ Standard Library interfaces
2082   module experimental {
2083     module iterator           { header "experimental/iterator" }
2084     module memory             { header "experimental/memory" }
2085     module propagate_const    { header "experimental/propagate_const" }
2086     module type_traits        { header "experimental/type_traits" }
2087     module utility            { header "experimental/utility" }
2088     module simd {
2089       private header "experimental/__simd/aligned_tag.h"
2090       private header "experimental/__simd/declaration.h"
2091       private header "experimental/__simd/reference.h"
2092       private header "experimental/__simd/scalar.h"
2093       private header "experimental/__simd/simd_mask.h"
2094       private header "experimental/__simd/simd.h"
2095       private header "experimental/__simd/traits.h"
2096       private header "experimental/__simd/utility.h"
2097       private header "experimental/__simd/vec_ext.h"
2098       header "experimental/simd"
2099       export *
2100     }
2101   }
2103   // Implementation detail headers that are private to libc++. These modules
2104   // must not be directly imported.
2105   module debug_utils {
2106     module randomize_range              { header "__debug_utils/randomize_range.h" }
2107     module sanitizers                   { header "__debug_utils/sanitizers.h" }
2108     module strict_weak_ordering_check   { header "__debug_utils/strict_weak_ordering_check.h" }
2109   }
2111   module get_fwd {
2112     header "__fwd/get.h"
2113     export std_core.fwd.pair
2114     export std_core.fwd.tuple
2115     export std.array.fwd
2116     export std.complex.fwd
2117     export std.ranges.subrange_fwd
2118     export std.variant.fwd
2119   }
2121   module pstl {
2122     module backend_fwd {
2123       header "__pstl/backend_fwd.h"
2124     }
2125     module backend {
2126       header "__pstl/backend.h"
2127       export * // need to export everything from whatever backend is currently configured
2128     }
2129     module backends {
2130       module default {
2131         header "__pstl/backends/default.h"
2132         export std_core.utility_core.empty
2133       }
2134       module libdispatch {
2135         header "__pstl/backends/libdispatch.h"
2136         export std.pstl.cpu_algos
2137         export std_core.utility_core.empty
2138       }
2139       module serial {
2140         header "__pstl/backends/serial.h"
2141         export std_core.utility_core.empty
2142       }
2143       module std_thread {
2144         header "__pstl/backends/std_thread.h"
2145         export std.pstl.cpu_algos
2146         export std_core.utility_core.empty
2147       }
2148     }
2149     module cpu_algos {
2150       module any_of {
2151         header "__pstl/cpu_algos/any_of.h"
2152       }
2153       module cpu_traits {
2154         header "__pstl/cpu_algos/cpu_traits.h"
2155       }
2156       module fill {
2157         header "__pstl/cpu_algos/fill.h"
2158         export std_core.utility_core.empty
2159       }
2160       module find_if {
2161         header "__pstl/cpu_algos/find_if.h"
2162       }
2163       module for_each {
2164         header "__pstl/cpu_algos/for_each.h"
2165         export std_core.utility_core.empty
2166       }
2167       module merge {
2168         header "__pstl/cpu_algos/merge.h"
2169       }
2170       module stable_sort {
2171         header "__pstl/cpu_algos/stable_sort.h"
2172         export std_core.utility_core.empty
2173       }
2174       module transform {
2175         header "__pstl/cpu_algos/transform.h"
2176       }
2177       module transform_reduce {
2178         header "__pstl/cpu_algos/transform_reduce.h"
2179       }
2180     }
2181     module dispatch           { header "__pstl/dispatch.h" }
2182     module handle_exception   { header "__pstl/handle_exception.h" }
2183   }
2185   // Miscellaneous modules for top-level headers
2186   module bit_reference_fwd {
2187     header "__fwd/bit_reference.h"
2188   }
2189   module bit_reference {
2190     header "__bit_reference"
2191     export std.bit_reference_fwd
2192   }
2193   module hash_table           { header "__hash_table" }
2194   module node_handle          { header "__node_handle" }
2195   module split_buffer         { header "__split_buffer" }
2196   module tree                 { header "__tree" }
2197   module std_mbstate_t {
2198     header "__std_mbstate_t.h"
2199     export *
2200   }
2201   module verbose_abort {
2202     header "__verbose_abort"
2203   }
2204   module internal_assert {
2205     header "__assert"
2206     export *
2207   }
2209   module undef_macros {
2210     textual header "__undef_macros"
2211   }
2213   // This module needs to appear after __tree to work around issues with modules in Objective-C++ mode.
2214   module coroutine {
2215     module coroutine_handle         { header "__coroutine/coroutine_handle.h" }
2216     module coroutine_traits         { header "__coroutine/coroutine_traits.h" }
2217     module noop_coroutine_handle    { header "__coroutine/noop_coroutine_handle.h" }
2218     module trivial_awaitables       { header "__coroutine/trivial_awaitables.h" }
2220     header "coroutine"
2221     export *
2222   }
2223 } // module std
2225 // C compatibility headers
2227 // These modules need to be their own top-level modules because they depend on the system-provided
2228 // headers (via include_next), which are then free to include other C headers provided by libc++.
2229 // If we group these headers in a single module, we would end up with circular dependencies.
2230 module std_complex_h [system] {
2231   header "complex.h"
2232   export *
2234 module std_ctype_h [system] {
2235   header "ctype.h"
2236   export *
2238 module std_errno_h [system] {
2239   header "errno.h"
2240   export *
2242 module std_fenv_h [system] {
2243   header "fenv.h"
2244   export *
2246 module std_float_h [system] {
2247   header "float.h"
2248   export *
2250 module std_inttypes_h [system] {
2251   header "inttypes.h"
2252   export *
2254 module std_math_h [system] {
2255   header "math.h"
2256   export *
2258 module std_stdatomic_h [system] {
2259   header "stdatomic.h"
2260   export *
2262 module std_stdbool_h [system] {
2263   // <stdbool.h>'s __bool_true_false_are_defined macro requires textual inclusion.
2264   textual header "stdbool.h"
2266 module std_stddef_h [system] {
2267   // <stddef.h>'s __need_* macros require textual inclusion.
2268   textual header "stddef.h"
2270 module std_stdio_h [system] {
2271   // <stdio.h>'s __need_* macros require textual inclusion.
2272   textual header "stdio.h"
2274 module std_stdlib_h [system] {
2275   // <stdlib.h>'s __need_* macros require textual inclusion.
2276   textual header "stdlib.h"
2278 module std_string_h [system] {
2279   header "string.h"
2280   export *
2282 module std_tgmath_h [system] {
2283   header "tgmath.h"
2284   export *
2286 module std_uchar_h [system] {
2287   header "uchar.h"
2288   export *
2290 module std_wchar_h [system] {
2291   // <wchar.h>'s __need_* macros require textual inclusion.
2292   textual header "wchar.h"
2294 module std_wctype_h [system] {
2295   header "wctype.h"
2296   export *
2299 // This header is used by other C compatibility headers so it needs to be in its own module.
2300 module std_private_mbstate_t [system] {
2301   header "__mbstate_t.h"
2302   export *