blob: 999675069fe73b857e9f2ae59faf4dc66c099da1 [file] [log] [blame]
Eric Fiselier62b959c2016-12-08 06:37:41 +00001// define the module for __config outside of the top level 'std' module
2// since __config may be included from C headers which may create an
3// include cycle.
4module std_config [system] [extern_c] {
Louis Dionnedfd8bfc2022-02-10 15:06:50 -05005 header "__config"
Louis Dionnedfd8bfc2022-02-10 15:06:50 -05006 export *
Eric Fiselier62b959c2016-12-08 06:37:41 +00007}
8
Richard Smith31cfef02014-05-21 00:33:49 +00009module std [system] {
Eric Fiselier62b959c2016-12-08 06:37:41 +000010 export std_config
Richard Smith31cfef02014-05-21 00:33:49 +000011 // FIXME: The standard does not require that each of these submodules
12 // re-exports its imported modules. We should provide an alternative form of
13 // export that issues a warning if a name from the submodule is used, and
14 // use that to provide a 'strict mode' for libc++.
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000015
16 // Deprecated C-compatibility headers. These can all be included from within
17 // an 'extern "C"' context.
18 module depr [extern_c] {
19 // <assert.h> provided by C library.
20 module ctype_h {
21 header "ctype.h"
22 export *
23 }
24 module errno_h {
25 header "errno.h"
26 export *
27 }
Eric Fiselier5dddf722019-02-11 23:47:19 +000028 module fenv_h {
29 header "fenv.h"
30 export *
31 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000032 // <float.h> provided by compiler or C library.
33 module inttypes_h {
34 header "inttypes.h"
35 export stdint_h
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000036 export *
37 }
38 // <iso646.h> provided by compiler.
39 // <limits.h> provided by compiler or C library.
Eric Fiselierc6213332016-11-19 01:14:15 +000040 module locale_h {
Louis Dionne4ccfe802022-05-23 16:48:47 -040041 @requires_LIBCXX_ENABLE_LOCALIZATION@
Eric Fiselierc6213332016-11-19 01:14:15 +000042 header "locale.h"
Eric Fiselierc6213332016-11-19 01:14:15 +000043 export *
44 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000045 module math_h {
46 header "math.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000047 export *
48 }
49 module setjmp_h {
50 header "setjmp.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000051 export *
52 }
Louis Dionnebb5d1512022-04-11 10:42:45 -040053 module stdatomic_h {
Louis Dionne4ccfe802022-05-23 16:48:47 -040054 @requires_LIBCXX_ENABLE_THREADS@
Louis Dionne68d0bcd2022-05-12 14:43:20 -040055 requires cplusplus23
Louis Dionnebb5d1512022-04-11 10:42:45 -040056 header "stdatomic.h"
57 export *
58 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000059 // FIXME: <stdalign.h> is missing.
60 // <signal.h> provided by C library.
61 // <stdarg.h> provided by compiler.
Louis Dionne5bb21d72022-08-04 16:57:27 -040062 module stdbool_h {
63 // <stdbool.h>'s __bool_true_false_are_defined macro requires textual inclusion.
64 textual header "stdbool.h"
Louis Dionne9bedd7a2023-02-02 18:50:10 -050065 export *
Louis Dionne5bb21d72022-08-04 16:57:27 -040066 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000067 module stddef_h {
68 // <stddef.h>'s __need_* macros require textual inclusion.
69 textual header "stddef.h"
Louis Dionne9bedd7a2023-02-02 18:50:10 -050070 export *
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000071 }
Eric Fiseliercbda4fb2016-11-22 20:05:19 +000072 module stdint_h {
73 header "stdint.h"
74 export *
Eric Fiseliercbda4fb2016-11-22 20:05:19 +000075 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000076 module stdio_h {
Yi Kong00612f12022-11-22 20:11:42 +090077 // <stdio.h>'s __need_* macros require textual inclusion.
78 textual header "stdio.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000079 export *
80 }
81 module stdlib_h {
Yi Kong00612f12022-11-22 20:11:42 +090082 // <stdlib.h>'s __need_* macros require textual inclusion.
83 textual header "stdlib.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000084 export *
85 }
86 module string_h {
87 header "string.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000088 export *
89 }
Louis Dionne789dd242022-02-03 15:42:40 -050090 module uchar_h {
91 header "uchar.h"
92 export *
93 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000094 // <time.h> provided by C library.
95 module wchar_h {
Louis Dionne4ccfe802022-05-23 16:48:47 -040096 @requires_LIBCXX_ENABLE_WIDE_CHARACTERS@
Yi Kong00612f12022-11-22 20:11:42 +090097 // <wchar.h>'s __need_* macros require textual inclusion.
98 textual header "wchar.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000099 export *
100 }
101 module wctype_h {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400102 @requires_LIBCXX_ENABLE_WIDE_CHARACTERS@
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000103 header "wctype.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000104 export *
105 }
106 }
107
108 // <complex.h> and <tgmath.h> are not C headers in any real sense, do not
109 // allow their use in extern "C" contexts.
110 module complex_h {
111 header "complex.h"
112 export ccomplex
113 export *
114 }
115 module tgmath_h {
116 header "tgmath.h"
117 export ccomplex
118 export cmath
119 export *
120 }
121
122 // C compatibility headers.
123 module compat {
124 module cassert {
125 // <cassert>'s use of NDEBUG requires textual inclusion.
126 textual header "cassert"
127 }
128 module ccomplex {
129 header "ccomplex"
130 export complex
131 export *
132 }
133 module cctype {
134 header "cctype"
135 export *
136 }
137 module cerrno {
138 header "cerrno"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000139 export *
140 }
141 module cfenv {
142 header "cfenv"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000143 export *
144 }
145 module cfloat {
146 header "cfloat"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000147 export *
148 }
149 module cinttypes {
150 header "cinttypes"
151 export cstdint
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000152 export *
153 }
154 module ciso646 {
155 header "ciso646"
156 export *
157 }
158 module climits {
159 header "climits"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000160 export *
161 }
162 module clocale {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400163 @requires_LIBCXX_ENABLE_LOCALIZATION@
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000164 header "clocale"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000165 export *
166 }
167 module cmath {
168 header "cmath"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000169 export *
170 }
171 module csetjmp {
172 header "csetjmp"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000173 export *
174 }
175 module csignal {
176 header "csignal"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000177 export *
178 }
179 // FIXME: <cstdalign> is missing.
180 module cstdarg {
181 header "cstdarg"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000182 export *
183 }
184 module cstdbool {
185 header "cstdbool"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000186 export *
187 }
188 module cstddef {
189 header "cstddef"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000190 export *
191 }
192 module cstdint {
193 header "cstdint"
Eric Fiseliercbda4fb2016-11-22 20:05:19 +0000194 export depr.stdint_h
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000195 export *
196 }
197 module cstdio {
198 header "cstdio"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000199 export *
200 }
201 module cstdlib {
202 header "cstdlib"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000203 export *
204 }
205 module cstring {
206 header "cstring"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000207 export *
208 }
209 module ctgmath {
210 header "ctgmath"
211 export ccomplex
212 export cmath
213 export *
214 }
215 module ctime {
216 header "ctime"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000217 export *
218 }
Louis Dionne789dd242022-02-03 15:42:40 -0500219 module cuchar {
220 header "cuchar"
221 export *
222 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000223 module cwchar {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400224 @requires_LIBCXX_ENABLE_WIDE_CHARACTERS@
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000225 header "cwchar"
Eric Fiselier3b733092016-12-06 07:40:46 +0000226 export depr.stdio_h
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000227 export *
228 }
229 module cwctype {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400230 @requires_LIBCXX_ENABLE_WIDE_CHARACTERS@
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000231 header "cwctype"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000232 export *
233 }
234 }
235
Richard Smith31cfef02014-05-21 00:33:49 +0000236 module algorithm {
237 header "algorithm"
238 export initializer_list
239 export *
Louis Dionnea60dd872021-06-17 11:30:11 -0400240
241 module __algorithm {
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200242 module adjacent_find { private header "__algorithm/adjacent_find.h" }
243 module all_of { private header "__algorithm/all_of.h" }
244 module any_of { private header "__algorithm/any_of.h" }
245 module binary_search { private header "__algorithm/binary_search.h" }
246 module clamp { private header "__algorithm/clamp.h" }
247 module comp { private header "__algorithm/comp.h" }
248 module comp_ref_type { private header "__algorithm/comp_ref_type.h" }
249 module copy { private header "__algorithm/copy.h" }
250 module copy_backward { private header "__algorithm/copy_backward.h" }
251 module copy_if { private header "__algorithm/copy_if.h" }
varconsta6e67c12023-01-13 16:56:58 -0800252 module copy_move_common { private header "__algorithm/copy_move_common.h" }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200253 module copy_n { private header "__algorithm/copy_n.h" }
254 module count { private header "__algorithm/count.h" }
255 module count_if { private header "__algorithm/count_if.h" }
256 module equal { private header "__algorithm/equal.h" }
257 module equal_range { private header "__algorithm/equal_range.h" }
258 module fill { private header "__algorithm/fill.h" }
259 module fill_n { private header "__algorithm/fill_n.h" }
260 module find { private header "__algorithm/find.h" }
261 module find_end { private header "__algorithm/find_end.h" }
262 module find_first_of { private header "__algorithm/find_first_of.h" }
263 module find_if { private header "__algorithm/find_if.h" }
264 module find_if_not { private header "__algorithm/find_if_not.h" }
265 module for_each { private header "__algorithm/for_each.h" }
266 module for_each_n { private header "__algorithm/for_each_n.h" }
267 module generate { private header "__algorithm/generate.h" }
268 module generate_n { private header "__algorithm/generate_n.h" }
269 module half_positive { private header "__algorithm/half_positive.h" }
270 module in_found_result { private header "__algorithm/in_found_result.h" }
271 module in_fun_result { private header "__algorithm/in_fun_result.h" }
272 module in_in_out_result { private header "__algorithm/in_in_out_result.h" }
273 module in_in_result { private header "__algorithm/in_in_result.h" }
274 module in_out_out_result { private header "__algorithm/in_out_out_result.h" }
275 module in_out_result { private header "__algorithm/in_out_result.h" }
276 module includes { private header "__algorithm/includes.h" }
277 module inplace_merge { private header "__algorithm/inplace_merge.h" }
278 module is_heap { private header "__algorithm/is_heap.h" }
279 module is_heap_until { private header "__algorithm/is_heap_until.h" }
280 module is_partitioned { private header "__algorithm/is_partitioned.h" }
281 module is_permutation { private header "__algorithm/is_permutation.h" }
282 module is_sorted { private header "__algorithm/is_sorted.h" }
283 module is_sorted_until { private header "__algorithm/is_sorted_until.h" }
284 module iter_swap { private header "__algorithm/iter_swap.h" }
Nikolas Klauser23713ea2022-08-13 23:10:31 +0200285 module iterator_operations {
286 private header "__algorithm/iterator_operations.h"
287 export *
288 }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200289 module lexicographical_compare { private header "__algorithm/lexicographical_compare.h" }
290 module lower_bound { private header "__algorithm/lower_bound.h" }
291 module make_heap { private header "__algorithm/make_heap.h" }
Konstantin Varlamov55e39a82022-06-16 15:20:53 -0700292 module make_projected { private header "__algorithm/make_projected.h" }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200293 module max { private header "__algorithm/max.h" }
294 module max_element { private header "__algorithm/max_element.h" }
295 module merge { private header "__algorithm/merge.h" }
296 module min { private header "__algorithm/min.h" }
297 module min_element { private header "__algorithm/min_element.h" }
298 module min_max_result { private header "__algorithm/min_max_result.h" }
Nikolas Klauserb93c7282023-01-11 00:01:37 +0100299 module minmax {
300 private header "__algorithm/minmax.h"
301 export *
302 }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200303 module minmax_element { private header "__algorithm/minmax_element.h" }
304 module mismatch { private header "__algorithm/mismatch.h" }
305 module move { private header "__algorithm/move.h" }
306 module move_backward { private header "__algorithm/move_backward.h" }
307 module next_permutation { private header "__algorithm/next_permutation.h" }
308 module none_of { private header "__algorithm/none_of.h" }
309 module nth_element { private header "__algorithm/nth_element.h" }
310 module partial_sort { private header "__algorithm/partial_sort.h" }
311 module partial_sort_copy { private header "__algorithm/partial_sort_copy.h" }
312 module partition { private header "__algorithm/partition.h" }
313 module partition_copy { private header "__algorithm/partition_copy.h" }
314 module partition_point { private header "__algorithm/partition_point.h" }
315 module pop_heap { private header "__algorithm/pop_heap.h" }
316 module prev_permutation { private header "__algorithm/prev_permutation.h" }
317 module push_heap { private header "__algorithm/push_heap.h" }
318 module ranges_adjacent_find { private header "__algorithm/ranges_adjacent_find.h" }
319 module ranges_all_of { private header "__algorithm/ranges_all_of.h" }
320 module ranges_any_of { private header "__algorithm/ranges_any_of.h" }
Mark de Wever888eff82022-10-16 20:48:12 +0200321 module ranges_binary_search {
322 private header "__algorithm/ranges_binary_search.h"
323 export functional.__functional.ranges_operations
324 }
325 module ranges_clamp {
326 private header "__algorithm/ranges_clamp.h"
327 export functional.__functional.ranges_operations
328 }
Mark de Wevercc275d62022-10-25 21:56:01 +0200329 module ranges_copy {
330 private header "__algorithm/ranges_copy.h"
331 export algorithm.__algorithm.in_out_result
332 }
333 module ranges_copy_backward {
334 private header "__algorithm/ranges_copy_backward.h"
335 export algorithm.__algorithm.in_out_result
336 }
337 module ranges_copy_if {
338 private header "__algorithm/ranges_copy_if.h"
339 export algorithm.__algorithm.in_out_result
340 }
341 module ranges_copy_n {
342 private header "__algorithm/ranges_copy_n.h"
343 export algorithm.__algorithm.in_out_result
344 }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200345 module ranges_count { private header "__algorithm/ranges_count.h" }
346 module ranges_count_if { private header "__algorithm/ranges_count_if.h" }
347 module ranges_equal { private header "__algorithm/ranges_equal.h" }
Mark de Wever888eff82022-10-16 20:48:12 +0200348 module ranges_equal_range {
349 private header "__algorithm/ranges_equal_range.h"
350 export functional.__functional.ranges_operations
351 }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200352 module ranges_fill { private header "__algorithm/ranges_fill.h" }
353 module ranges_fill_n { private header "__algorithm/ranges_fill_n.h" }
354 module ranges_find { private header "__algorithm/ranges_find.h" }
Nikolas Klauser863c4fa2022-07-13 18:07:26 +0200355 module ranges_find_end { private header "__algorithm/ranges_find_end.h" }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200356 module ranges_find_first_of { private header "__algorithm/ranges_find_first_of.h" }
357 module ranges_find_if { private header "__algorithm/ranges_find_if.h" }
358 module ranges_find_if_not { private header "__algorithm/ranges_find_if_not.h" }
Mark de Wevercc275d62022-10-25 21:56:01 +0200359 module ranges_for_each {
360 private header "__algorithm/ranges_for_each.h"
361 export algorithm.__algorithm.in_fun_result
362 }
363 module ranges_for_each_n {
364 private header "__algorithm/ranges_for_each_n.h"
365 export algorithm.__algorithm.in_fun_result
366 }
Konstantin Varlamov6d0c51a2022-07-12 02:48:29 -0700367 module ranges_generate { private header "__algorithm/ranges_generate.h" }
368 module ranges_generate_n { private header "__algorithm/ranges_generate_n.h" }
Mark de Wever888eff82022-10-16 20:48:12 +0200369 module ranges_includes {
370 private header "__algorithm/ranges_includes.h"
371 export functional.__functional.ranges_operations
372 }
373 module ranges_inplace_merge {
374 private header "__algorithm/ranges_inplace_merge.h"
375 export functional.__functional.ranges_operations
376 }
377 module ranges_is_heap {
378 private header "__algorithm/ranges_is_heap.h"
379 export functional.__functional.ranges_operations
380 }
381 module ranges_is_heap_until {
382 private header "__algorithm/ranges_is_heap_until.h"
383 export functional.__functional.ranges_operations
384 }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200385 module ranges_is_partitioned { private header "__algorithm/ranges_is_partitioned.h" }
Nikolas Klauser88bdd2a2022-08-04 10:54:13 -0700386 module ranges_is_permutation { private header "__algorithm/ranges_is_permutation.h" }
Mark de Wever888eff82022-10-16 20:48:12 +0200387 module ranges_is_sorted {
388 private header "__algorithm/ranges_is_sorted.h"
389 export functional.__functional.ranges_operations
390 }
391 module ranges_is_sorted_until {
392 private header "__algorithm/ranges_is_sorted_until.h"
393 export functional.__functional.ranges_operations
394 }
Konstantin Varlamov4fdeeb12022-07-18 21:05:51 -0700395 module ranges_iterator_concept { private header "__algorithm/ranges_iterator_concept.h" }
Mark de Wever888eff82022-10-16 20:48:12 +0200396 module ranges_lexicographical_compare {
397 private header "__algorithm/ranges_lexicographical_compare.h"
398 export functional.__functional.ranges_operations
399 }
400 module ranges_lower_bound {
401 private header "__algorithm/ranges_lower_bound.h"
402 export functional.__functional.ranges_operations
403 }
404 module ranges_make_heap {
405 private header "__algorithm/ranges_make_heap.h"
406 export functional.__functional.ranges_operations
407 }
408 module ranges_max {
409 private header "__algorithm/ranges_max.h"
410 export functional.__functional.ranges_operations
411 }
412 module ranges_max_element {
413 private header "__algorithm/ranges_max_element.h"
414 export functional.__functional.ranges_operations
415 }
Mark de Wevercc275d62022-10-25 21:56:01 +0200416 module ranges_merge {
417 private header "__algorithm/ranges_merge.h"
418 export algorithm.__algorithm.in_in_out_result
419 }
Mark de Wever888eff82022-10-16 20:48:12 +0200420 module ranges_min {
421 private header "__algorithm/ranges_min.h"
422 export functional.__functional.ranges_operations
423 }
424 module ranges_min_element {
425 private header "__algorithm/ranges_min_element.h"
426 export functional.__functional.ranges_operations
427 }
428 module ranges_minmax {
429 private header "__algorithm/ranges_minmax.h"
430 export functional.__functional.ranges_operations
Mark de Wevercc275d62022-10-25 21:56:01 +0200431 export algorithm.__algorithm.min_max_result
Mark de Wever888eff82022-10-16 20:48:12 +0200432 }
433 module ranges_minmax_element {
434 private header "__algorithm/ranges_minmax_element.h"
435 export functional.__functional.ranges_operations
Mark de Wevercc275d62022-10-25 21:56:01 +0200436 export algorithm.__algorithm.min_max_result
Mark de Wever888eff82022-10-16 20:48:12 +0200437 }
Mark de Wevercc275d62022-10-25 21:56:01 +0200438 module ranges_mismatch {
439 private header "__algorithm/ranges_mismatch.h"
440 export algorithm.__algorithm.in_in_result
441 }
442 module ranges_move {
443 private header "__algorithm/ranges_move.h"
444 export algorithm.__algorithm.in_out_result
445 }
446 module ranges_move_backward {
447 private header "__algorithm/ranges_move_backward.h"
448 export algorithm.__algorithm.in_out_result
449 }
Mark de Wever888eff82022-10-16 20:48:12 +0200450 module ranges_next_permutation {
451 private header "__algorithm/ranges_next_permutation.h"
Mark de Wevercc275d62022-10-25 21:56:01 +0200452 export algorithm.__algorithm.in_found_result
Mark de Wever888eff82022-10-16 20:48:12 +0200453 export functional.__functional.ranges_operations
454 }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200455 module ranges_none_of { private header "__algorithm/ranges_none_of.h" }
Mark de Wever888eff82022-10-16 20:48:12 +0200456 module ranges_nth_element {
457 private header "__algorithm/ranges_nth_element.h"
458 export functional.__functional.ranges_operations
459 }
460 module ranges_partial_sort {
461 private header "__algorithm/ranges_partial_sort.h"
Mark de Wevercc275d62022-10-25 21:56:01 +0200462 export algorithm.__algorithm.in_out_result
Mark de Wever888eff82022-10-16 20:48:12 +0200463 export functional.__functional.ranges_operations
464 }
465 module ranges_partial_sort_copy {
466 private header "__algorithm/ranges_partial_sort_copy.h"
Mark de Wevercc275d62022-10-25 21:56:01 +0200467 export algorithm.__algorithm.in_out_out_result
Mark de Wever888eff82022-10-16 20:48:12 +0200468 export functional.__functional.ranges_operations
469 }
Konstantin Varlamov6d0c51a2022-07-12 02:48:29 -0700470 module ranges_partition { private header "__algorithm/ranges_partition.h" }
471 module ranges_partition_copy { private header "__algorithm/ranges_partition_copy.h" }
472 module ranges_partition_point { private header "__algorithm/ranges_partition_point.h" }
Mark de Wever888eff82022-10-16 20:48:12 +0200473 module ranges_pop_heap {
474 private header "__algorithm/ranges_pop_heap.h"
475 export functional.__functional.ranges_operations
476 }
477 module ranges_prev_permutation {
478 private header "__algorithm/ranges_prev_permutation.h"
Mark de Wevercc275d62022-10-25 21:56:01 +0200479 export algorithm.__algorithm.in_found_result
Mark de Wever888eff82022-10-16 20:48:12 +0200480 export functional.__functional.ranges_operations
481 }
482 module ranges_push_heap {
483 private header "__algorithm/ranges_push_heap.h"
484 export functional.__functional.ranges_operations
485 }
Nikolas Klauser7f52f282022-07-06 14:03:00 +0200486 module ranges_remove { private header "__algorithm/ranges_remove.h" }
Mark de Wevercc275d62022-10-25 21:56:01 +0200487 module ranges_remove_copy {
488 private header "__algorithm/ranges_remove_copy.h"
489 export algorithm.__algorithm.in_out_result
490 }
491 module ranges_remove_copy_if {
492 private header "__algorithm/ranges_remove_copy_if.h"
493 export algorithm.__algorithm.in_out_result
494 }
Nikolas Klauser7f52f282022-07-06 14:03:00 +0200495 module ranges_remove_if { private header "__algorithm/ranges_remove_if.h" }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200496 module ranges_replace { private header "__algorithm/ranges_replace.h" }
Mark de Wevercc275d62022-10-25 21:56:01 +0200497 module ranges_replace_copy {
498 private header "__algorithm/ranges_replace_copy.h"
499 export algorithm.__algorithm.in_out_result
500 }
501 module ranges_replace_copy_if {
502 private header "__algorithm/ranges_replace_copy_if.h"
503 export algorithm.__algorithm.in_out_result
504 }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200505 module ranges_replace_if { private header "__algorithm/ranges_replace_if.h" }
506 module ranges_reverse { private header "__algorithm/ranges_reverse.h" }
Mark de Wevercc275d62022-10-25 21:56:01 +0200507 module ranges_reverse_copy {
508 private header "__algorithm/ranges_reverse_copy.h"
509 export algorithm.__algorithm.in_out_result
510 }
Konstantin Varlamov0862e1e2022-08-03 16:04:14 -0700511 module ranges_rotate { private header "__algorithm/ranges_rotate.h" }
Mark de Wevercc275d62022-10-25 21:56:01 +0200512 module ranges_rotate_copy {
513 private header "__algorithm/ranges_rotate_copy.h"
514 export algorithm.__algorithm.in_out_result
515 }
Konstantin Varlamov3af52ff2022-08-02 22:33:12 -0700516 module ranges_sample { private header "__algorithm/ranges_sample.h" }
Nikolas Klauser863c4fa2022-07-13 18:07:26 +0200517 module ranges_search { private header "__algorithm/ranges_search.h" }
518 module ranges_search_n { private header "__algorithm/ranges_search_n.h" }
Mark de Wevercc275d62022-10-25 21:56:01 +0200519 module ranges_set_difference {
520 private header "__algorithm/ranges_set_difference.h"
521 export algorithm.__algorithm.in_out_result
522 }
523 module ranges_set_intersection {
524 private header "__algorithm/ranges_set_intersection.h"
525 export algorithm.__algorithm.in_in_out_result
526 }
Mark de Wever888eff82022-10-16 20:48:12 +0200527 module ranges_set_symmetric_difference {
528 private header "__algorithm/ranges_set_symmetric_difference.h"
Mark de Wevercc275d62022-10-25 21:56:01 +0200529 export algorithm.__algorithm.in_in_out_result
Mark de Wever888eff82022-10-16 20:48:12 +0200530 export functional.__functional.ranges_operations
531 }
532 module ranges_set_union {
Mark de Wevercc275d62022-10-25 21:56:01 +0200533 private header "__algorithm/ranges_set_union.h"
534 export algorithm.__algorithm.in_in_out_result
Mark de Wever888eff82022-10-16 20:48:12 +0200535 export functional.__functional.ranges_operations
536 }
Konstantin Varlamov6d0c51a2022-07-12 02:48:29 -0700537 module ranges_shuffle { private header "__algorithm/ranges_shuffle.h" }
Mark de Wever888eff82022-10-16 20:48:12 +0200538 module ranges_sort {
539 private header "__algorithm/ranges_sort.h"
540 export functional.__functional.ranges_operations
541 }
542 module ranges_sort_heap {
543 private header "__algorithm/ranges_sort_heap.h"
544 export functional.__functional.ranges_operations
545 }
Konstantin Varlamov6d0c51a2022-07-12 02:48:29 -0700546 module ranges_stable_partition { private header "__algorithm/ranges_stable_partition.h" }
Mark de Wever888eff82022-10-16 20:48:12 +0200547 module ranges_stable_sort {
548 private header "__algorithm/ranges_stable_sort.h"
549 export functional.__functional.ranges_operations
550 }
Mark de Wevercc275d62022-10-25 21:56:01 +0200551 module ranges_swap_ranges {
552 private header "__algorithm/ranges_swap_ranges.h"
553 export algorithm.__algorithm.in_in_result
554 }
555 module ranges_transform {
556 private header "__algorithm/ranges_transform.h"
557 export algorithm.__algorithm.in_in_out_result
558 export algorithm.__algorithm.in_out_result
559 }
Konstantin Varlamov3af52ff2022-08-02 22:33:12 -0700560 module uniform_random_bit_generator_adaptor {
561 private header "__algorithm/uniform_random_bit_generator_adaptor.h"
562 }
Konstantin Varlamov6d0c51a2022-07-12 02:48:29 -0700563 module ranges_unique { private header "__algorithm/ranges_unique.h" }
Mark de Wevercc275d62022-10-25 21:56:01 +0200564 module ranges_unique_copy {
565 private header "__algorithm/ranges_unique_copy.h"
566 export algorithm.__algorithm.in_out_result
567 }
Mark de Wever888eff82022-10-16 20:48:12 +0200568 module ranges_upper_bound {
569 private header "__algorithm/ranges_upper_bound.h"
570 export functional.__functional.ranges_operations
571 }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200572 module remove { private header "__algorithm/remove.h" }
573 module remove_copy { private header "__algorithm/remove_copy.h" }
574 module remove_copy_if { private header "__algorithm/remove_copy_if.h" }
575 module remove_if { private header "__algorithm/remove_if.h" }
576 module replace { private header "__algorithm/replace.h" }
577 module replace_copy { private header "__algorithm/replace_copy.h" }
578 module replace_copy_if { private header "__algorithm/replace_copy_if.h" }
579 module replace_if { private header "__algorithm/replace_if.h" }
580 module reverse { private header "__algorithm/reverse.h" }
581 module reverse_copy { private header "__algorithm/reverse_copy.h" }
582 module rotate { private header "__algorithm/rotate.h" }
583 module rotate_copy { private header "__algorithm/rotate_copy.h" }
584 module sample { private header "__algorithm/sample.h" }
585 module search { private header "__algorithm/search.h" }
586 module search_n { private header "__algorithm/search_n.h" }
587 module set_difference { private header "__algorithm/set_difference.h" }
588 module set_intersection { private header "__algorithm/set_intersection.h" }
589 module set_symmetric_difference { private header "__algorithm/set_symmetric_difference.h" }
590 module set_union { private header "__algorithm/set_union.h" }
591 module shift_left { private header "__algorithm/shift_left.h" }
592 module shift_right { private header "__algorithm/shift_right.h" }
593 module shuffle { private header "__algorithm/shuffle.h" }
594 module sift_down { private header "__algorithm/sift_down.h" }
595 module sort { private header "__algorithm/sort.h" }
596 module sort_heap { private header "__algorithm/sort_heap.h" }
597 module stable_partition { private header "__algorithm/stable_partition.h" }
598 module stable_sort { private header "__algorithm/stable_sort.h" }
599 module swap_ranges { private header "__algorithm/swap_ranges.h" }
600 module transform { private header "__algorithm/transform.h" }
601 module unique { private header "__algorithm/unique.h" }
602 module unique_copy { private header "__algorithm/unique_copy.h" }
603 module unwrap_iter { private header "__algorithm/unwrap_iter.h" }
Nikolas Klauser544c2922022-07-27 23:52:45 +0200604 module unwrap_range { private header "__algorithm/unwrap_range.h" }
Nikolas Klauser2fd677c2022-06-15 16:24:43 +0200605 module upper_bound { private header "__algorithm/upper_bound.h" }
Louis Dionnea60dd872021-06-17 11:30:11 -0400606 }
Richard Smith31cfef02014-05-21 00:33:49 +0000607 }
Eric Fiselier006458b2016-12-05 23:33:19 +0000608 module any {
609 header "any"
610 export *
611 }
Richard Smith31cfef02014-05-21 00:33:49 +0000612 module array {
613 header "array"
614 export initializer_list
615 export *
Nikolas Klausera22eabb2022-09-05 14:38:24 +0200616
617 module array_fwd { private header "__fwd/array.h" }
Richard Smith31cfef02014-05-21 00:33:49 +0000618 }
619 module atomic {
620 header "atomic"
621 export *
Richard Smith31cfef02014-05-21 00:33:49 +0000622 }
Olivier Giroux161e6e82020-02-18 09:58:34 -0500623 module barrier {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400624 @requires_LIBCXX_ENABLE_THREADS@
Olivier Giroux161e6e82020-02-18 09:58:34 -0500625 header "barrier"
626 export *
627 }
Marshall Clowbf32ec92018-08-17 16:07:48 +0000628 module bit {
629 header "bit"
630 export *
Louis Dionne1462d4d2020-05-28 14:28:38 -0400631
632 module __bit {
Nikolas Klauserd6ca4862022-12-27 02:31:38 +0100633 module bit_cast { private header "__bit/bit_cast.h" }
634 module bit_ceil { private header "__bit/bit_ceil.h" }
635 module bit_floor { private header "__bit/bit_floor.h" }
636 module bit_log2 { private header "__bit/bit_log2.h" }
637 module bit_width { private header "__bit/bit_width.h" }
638 module blsr { private header "__bit/blsr.h" }
639 module byteswap { private header "__bit/byteswap.h" }
640 module countl { private header "__bit/countl.h" }
641 module countr { private header "__bit/countr.h" }
642 module endian { private header "__bit/endian.h" }
643 module has_single_bit { private header "__bit/has_single_bit.h" }
644 module popcount { private header "__bit/popcount.h" }
645 module rotate { private header "__bit/rotate.h" }
Louis Dionne1462d4d2020-05-28 14:28:38 -0400646 }
Marshall Clowbf32ec92018-08-17 16:07:48 +0000647 }
Richard Smith31cfef02014-05-21 00:33:49 +0000648 module bitset {
649 header "bitset"
650 export string
651 export iosfwd
652 export *
653 }
654 // No submodule for cassert. It fundamentally needs repeated, textual inclusion.
Zhihao Yuan7bf19052018-08-01 02:38:30 +0000655 module charconv {
656 header "charconv"
657 export *
Mark de Weverfd2375f2021-08-30 19:47:55 +0200658
659 module __charconv {
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500660 module chars_format { private header "__charconv/chars_format.h" }
Mark de Weverfd2375f2021-08-30 19:47:55 +0200661 module from_chars_result { private header "__charconv/from_chars_result.h" }
Mark de Wevercc283772022-05-16 17:12:18 +0200662 module tables { private header "__charconv/tables.h" }
663 module to_chars_base_10 { private header "__charconv/to_chars_base_10.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500664 module to_chars_result { private header "__charconv/to_chars_result.h" }
Mark de Weverfd2375f2021-08-30 19:47:55 +0200665 }
666
Zhihao Yuan7bf19052018-08-01 02:38:30 +0000667 }
Richard Smith31cfef02014-05-21 00:33:49 +0000668 module chrono {
669 header "chrono"
670 export *
Louis Dionne9c2a32052022-01-10 14:56:43 -0500671
672 module __chrono {
Mark de Wever7171f712022-03-20 13:40:02 +0100673 module calendar { private header "__chrono/calendar.h" }
674 module convert_to_timespec { private header "__chrono/convert_to_timespec.h" }
675 module convert_to_tm { private header "__chrono/convert_to_tm.h" }
676 module day { private header "__chrono/day.h" }
677 module duration { private header "__chrono/duration.h" }
678 module file_clock { private header "__chrono/file_clock.h" }
679 module formatter {
680 @requires_LIBCXX_ENABLE_LOCALIZATION@
681 private header "__chrono/formatter.h"
682 }
683 module hh_mm_ss { private header "__chrono/hh_mm_ss.h" }
684 module high_resolution_clock {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400685 private header "__chrono/high_resolution_clock.h"
686 export steady_clock
687 export system_clock
Louis Dionnef4c0cc62022-11-24 16:20:11 -0500688 export time_point
Louis Dionne4ccfe802022-05-23 16:48:47 -0400689 }
Mark de Wever7171f712022-03-20 13:40:02 +0100690 module literals { private header "__chrono/literals.h" }
691 module month { private header "__chrono/month.h" }
692 module month_weekday { private header "__chrono/month_weekday.h" }
693 module monthday { private header "__chrono/monthday.h" }
694 module ostream {
695 @requires_LIBCXX_ENABLE_LOCALIZATION@
696 private header "__chrono/ostream.h"
697 }
698 module parser_std_format_spec {
699 @requires_LIBCXX_ENABLE_LOCALIZATION@
700 private header "__chrono/parser_std_format_spec.h"
701 }
702 module statically_widen { private header "__chrono/statically_widen.h" }
703 module steady_clock { private header "__chrono/steady_clock.h" }
704 module system_clock { private header "__chrono/system_clock.h" }
705 module time_point { private header "__chrono/time_point.h" }
706 module weekday { private header "__chrono/weekday.h" }
707 module year { private header "__chrono/year.h" }
708 module year_month { private header "__chrono/year_month.h" }
709 module year_month_day { private header "__chrono/year_month_day.h" }
710 module year_month_weekday { private header "__chrono/year_month_weekday.h" }
Louis Dionne9c2a32052022-01-10 14:56:43 -0500711 }
Richard Smith31cfef02014-05-21 00:33:49 +0000712 }
Richard Smith31cfef02014-05-21 00:33:49 +0000713 module codecvt {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400714 @requires_LIBCXX_ENABLE_LOCALIZATION@
Richard Smith31cfef02014-05-21 00:33:49 +0000715 header "codecvt"
716 export *
717 }
Eric Fiseliere0074fc2018-04-06 21:37:23 +0000718 module compare {
719 header "compare"
720 export *
Ruslan Arutyunyan1babff32021-07-28 22:05:46 -0400721
722 module __compare {
Arthur O'Dwyer0679d2d2021-09-08 16:48:50 -0400723 module common_comparison_category { private header "__compare/common_comparison_category.h" }
724 module compare_partial_order_fallback { private header "__compare/compare_partial_order_fallback.h" }
725 module compare_strong_order_fallback { private header "__compare/compare_strong_order_fallback.h" }
726 module compare_three_way { private header "__compare/compare_three_way.h" }
727 module compare_three_way_result { private header "__compare/compare_three_way_result.h" }
728 module compare_weak_order_fallback { private header "__compare/compare_weak_order_fallback.h" }
729 module is_eq { private header "__compare/is_eq.h" }
730 module ordering { private header "__compare/ordering.h" }
731 module partial_order { private header "__compare/partial_order.h" }
732 module strong_order { private header "__compare/strong_order.h" }
733 module synth_three_way { private header "__compare/synth_three_way.h" }
734 module three_way_comparable { private header "__compare/three_way_comparable.h" }
735 module weak_order { private header "__compare/weak_order.h" }
Ruslan Arutyunyan1babff32021-07-28 22:05:46 -0400736 }
Eric Fiseliere0074fc2018-04-06 21:37:23 +0000737 }
Richard Smith31cfef02014-05-21 00:33:49 +0000738 module complex {
739 header "complex"
740 export *
741 }
Eric Fiselierd59a0322020-04-08 18:00:13 -0400742 module concepts {
743 header "concepts"
744 export *
Arthur O'Dwyerf72c4772021-07-29 01:08:30 -0400745
746 module __concepts {
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500747 module arithmetic { private header "__concepts/arithmetic.h" }
748 module assignable { private header "__concepts/assignable.h" }
749 module boolean_testable { private header "__concepts/boolean_testable.h" }
750 module class_or_enum { private header "__concepts/class_or_enum.h" }
751 module common_reference_with { private header "__concepts/common_reference_with.h" }
752 module common_with { private header "__concepts/common_with.h" }
753 module constructible { private header "__concepts/constructible.h" }
754 module convertible_to { private header "__concepts/convertible_to.h" }
755 module copyable { private header "__concepts/copyable.h" }
756 module derived_from { private header "__concepts/derived_from.h" }
757 module destructible { private header "__concepts/destructible.h" }
758 module different_from { private header "__concepts/different_from.h" }
Mark de Wever3a374152023-01-27 08:02:09 +0100759 module equality_comparable {
760 private header "__concepts/equality_comparable.h"
761 export type_traits.common_reference
762 }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500763 module invocable { private header "__concepts/invocable.h" }
764 module movable { private header "__concepts/movable.h" }
765 module predicate { private header "__concepts/predicate.h" }
766 module regular { private header "__concepts/regular.h" }
767 module relation { private header "__concepts/relation.h" }
Mark de Wever3a374152023-01-27 08:02:09 +0100768 module same_as {
769 private header "__concepts/same_as.h"
770 export type_traits.is_same
771 }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500772 module semiregular { private header "__concepts/semiregular.h" }
773 module swappable { private header "__concepts/swappable.h" }
774 module totally_ordered { private header "__concepts/totally_ordered.h" }
Arthur O'Dwyerf72c4772021-07-29 01:08:30 -0400775 }
Eric Fiselierd59a0322020-04-08 18:00:13 -0400776 }
Richard Smith31cfef02014-05-21 00:33:49 +0000777 module condition_variable {
778 header "condition_variable"
779 export *
780 }
Chuanqi Xu6fdf6192021-11-16 14:05:34 +0800781 module coroutine {
Chuanqi Xu6fdf6192021-11-16 14:05:34 +0800782 header "coroutine"
783 export compare
784 export *
785
786 module __coroutine {
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500787 module coroutine_handle { private header "__coroutine/coroutine_handle.h" }
788 module coroutine_traits { private header "__coroutine/coroutine_traits.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500789 module noop_coroutine_handle { private header "__coroutine/noop_coroutine_handle.h" }
Arthur O'Dwyer93488582022-01-10 13:23:19 -0500790 module trivial_awaitables { private header "__coroutine/trivial_awaitables.h" }
Chuanqi Xu6fdf6192021-11-16 14:05:34 +0800791 }
792 }
Richard Smith31cfef02014-05-21 00:33:49 +0000793 module deque {
794 header "deque"
795 export initializer_list
796 export *
797 }
798 module exception {
799 header "exception"
800 export *
801 }
Louis Dionne59d0b3c2019-08-05 18:29:14 +0000802 module execution {
803 header "execution"
804 export *
805 }
Hui Xie11aebc02022-11-04 11:42:42 +0000806 module expected {
807 header "expected"
808 export *
809
810 module __expected {
811 module bad_expected_access { private header "__expected/bad_expected_access.h" }
812 module expected { private header "__expected/expected.h" }
813 module unexpect { private header "__expected/unexpect.h" }
814 module unexpected { private header "__expected/unexpected.h" }
815 }
816 }
Eric Fiselier02cea5e2018-07-27 03:07:09 +0000817 module filesystem {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400818 @requires_LIBCXX_ENABLE_FILESYSTEM@
Eric Fiselier02cea5e2018-07-27 03:07:09 +0000819 header "filesystem"
820 export *
Nikolas Klauser70bc0962021-12-18 10:21:25 +0100821
822 module __filesystem {
823 module copy_options { private header "__filesystem/copy_options.h" }
824 module directory_entry { private header "__filesystem/directory_entry.h" }
825 module directory_iterator { private header "__filesystem/directory_iterator.h" }
826 module directory_options { private header "__filesystem/directory_options.h" }
827 module file_status { private header "__filesystem/file_status.h" }
828 module file_time_type { private header "__filesystem/file_time_type.h" }
829 module file_type { private header "__filesystem/file_type.h" }
830 module filesystem_error { private header "__filesystem/filesystem_error.h" }
831 module operations { private header "__filesystem/operations.h" }
Nikolas Klauser70bc0962021-12-18 10:21:25 +0100832 module path { private header "__filesystem/path.h" }
Arthur O'Dwyer93488582022-01-10 13:23:19 -0500833 module path_iterator { private header "__filesystem/path_iterator.h" }
Nikolas Klauser70bc0962021-12-18 10:21:25 +0100834 module perm_options { private header "__filesystem/perm_options.h" }
835 module perms { private header "__filesystem/perms.h" }
836 module recursive_directory_iterator { private header "__filesystem/recursive_directory_iterator.h" }
837 module space_info { private header "__filesystem/space_info.h" }
838 module u8path { private header "__filesystem/u8path.h" }
839 }
Eric Fiselier02cea5e2018-07-27 03:07:09 +0000840 }
Mark de Weverdf5fd832020-11-26 19:12:18 +0100841 module format {
842 header "format"
843 export *
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +0000844
845 module __format {
Mark de Wever49c31d22022-05-28 15:30:10 +0200846 module buffer { private header "__format/buffer.h" }
847 module concepts { private header "__format/concepts.h" }
Mark de Wever73b8b012022-05-05 18:57:32 +0200848 module container_adaptor { private header "__format/container_adaptor.h" }
Mark de Wever49c31d22022-05-28 15:30:10 +0200849 module enable_insertable { private header "__format/enable_insertable.h" }
Mark de Wever9f512cf2022-05-05 08:03:58 +0200850 module escaped_output_table { private header "__format/escaped_output_table.h" }
Mark de Wever49c31d22022-05-28 15:30:10 +0200851 module extended_grapheme_cluster_table { private header "__format/extended_grapheme_cluster_table.h" }
852 module format_arg { private header "__format/format_arg.h" }
853 module format_arg_store { private header "__format/format_arg_store.h" }
854 module format_args { private header "__format/format_args.h" }
Mark de Wevercba61372020-12-05 11:45:21 +0100855 module format_context {
856 private header "__format/format_context.h"
857 export optional
858 export locale
859 }
Mark de Wever49c31d22022-05-28 15:30:10 +0200860 module format_error { private header "__format/format_error.h" }
Mark de Wever207bc7f2022-09-11 13:05:26 +0200861 module format_functions { private header "__format/format_functions.h" }
Mark de Wever49c31d22022-05-28 15:30:10 +0200862 module format_fwd { private header "__format/format_fwd.h" }
863 module format_parse_context { private header "__format/format_parse_context.h" }
864 module format_string { private header "__format/format_string.h" }
Mark de Wever207bc7f2022-09-11 13:05:26 +0200865 module format_to_n_result {
866 private header "__format/format_to_n_result.h"
867 export iterator.__iterator.incrementable_traits
868 }
Mark de Wever49c31d22022-05-28 15:30:10 +0200869 module formatter { private header "__format/formatter.h" }
870 module formatter_bool { private header "__format/formatter_bool.h" }
871 module formatter_char { private header "__format/formatter_char.h" }
872 module formatter_floating_point { private header "__format/formatter_floating_point.h" }
873 module formatter_integer { private header "__format/formatter_integer.h" }
874 module formatter_integral { private header "__format/formatter_integral.h" }
875 module formatter_output { private header "__format/formatter_output.h" }
876 module formatter_pointer { private header "__format/formatter_pointer.h" }
877 module formatter_string { private header "__format/formatter_string.h" }
Mark de Wever9b56afa2022-05-05 18:57:32 +0200878 module formatter_tuple { private header "__format/formatter_tuple.h" }
Mark de Wever49c31d22022-05-28 15:30:10 +0200879 module parser_std_format_spec { private header "__format/parser_std_format_spec.h" }
Mark de Wever03d2f082022-10-19 19:50:48 +0200880 module range_default_formatter { private header "__format/range_default_formatter.h" }
Mark de Weverab0f8c62022-05-05 18:57:32 +0200881 module range_formatter { private header "__format/range_formatter.h" }
Mark de Wever49c31d22022-05-28 15:30:10 +0200882 module unicode { private header "__format/unicode.h" }
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +0000883 }
Mark de Weverdf5fd832020-11-26 19:12:18 +0100884 }
Richard Smith31cfef02014-05-21 00:33:49 +0000885 module forward_list {
886 header "forward_list"
887 export initializer_list
888 export *
889 }
890 module fstream {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400891 @requires_LIBCXX_ENABLE_LOCALIZATION@
Louis Dionne3f3f7532022-11-18 15:01:33 -0500892 @requires_LIBCXX_ENABLE_FSTREAM@
Richard Smith31cfef02014-05-21 00:33:49 +0000893 header "fstream"
894 export *
895 }
896 module functional {
897 header "functional"
898 export *
Christopher Di Bella55d7a822021-07-01 09:25:35 -0400899
Louis Dionnea60dd872021-06-17 11:30:11 -0400900 module __functional {
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000901 module binary_function { private header "__functional/binary_function.h" }
902 module binary_negate { private header "__functional/binary_negate.h" }
903 module bind { private header "__functional/bind.h" }
Louis Dionne067e22b2021-08-09 15:41:26 -0400904 module bind_back { private header "__functional/bind_back.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000905 module bind_front { private header "__functional/bind_front.h" }
906 module binder1st { private header "__functional/binder1st.h" }
907 module binder2nd { private header "__functional/binder2nd.h" }
Nikolas Klausere65652c2022-06-17 16:02:53 +0200908 module boyer_moore_searcher { private header "__functional/boyer_moore_searcher.h" }
Louis Dionne067e22b2021-08-09 15:41:26 -0400909 module compose { private header "__functional/compose.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000910 module default_searcher { private header "__functional/default_searcher.h" }
911 module function { private header "__functional/function.h" }
912 module hash { private header "__functional/hash.h" }
Nikolas Klauser23713ea2022-08-13 23:10:31 +0200913 module hash_fwd { private header "__fwd/hash.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000914 module identity { private header "__functional/identity.h" }
Nikolas Klauserfce5e682022-12-20 21:13:12 +0100915 module invoke {
916 private header "__functional/invoke.h"
917 export type_traits
918 }
Louis Dionne067e22b2021-08-09 15:41:26 -0400919 module is_transparent { private header "__functional/is_transparent.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500920 module mem_fn { private header "__functional/mem_fn.h" }
921 module mem_fun_ref { private header "__functional/mem_fun_ref.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000922 module not_fn { private header "__functional/not_fn.h" }
923 module operations { private header "__functional/operations.h" }
924 module perfect_forward { private header "__functional/perfect_forward.h" }
925 module pointer_to_binary_function { private header "__functional/pointer_to_binary_function.h" }
926 module pointer_to_unary_function { private header "__functional/pointer_to_unary_function.h" }
927 module ranges_operations { private header "__functional/ranges_operations.h" }
928 module reference_wrapper { private header "__functional/reference_wrapper.h" }
929 module unary_function { private header "__functional/unary_function.h" }
930 module unary_negate { private header "__functional/unary_negate.h" }
931 module unwrap_ref { private header "__functional/unwrap_ref.h" }
932 module weak_result_type { private header "__functional/weak_result_type.h" }
Louis Dionnea60dd872021-06-17 11:30:11 -0400933 }
Richard Smith31cfef02014-05-21 00:33:49 +0000934 }
935 module future {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400936 @requires_LIBCXX_ENABLE_THREADS@
Richard Smith31cfef02014-05-21 00:33:49 +0000937 header "future"
938 export *
939 }
940 module initializer_list {
941 header "initializer_list"
942 export *
943 }
944 module iomanip {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400945 @requires_LIBCXX_ENABLE_LOCALIZATION@
Richard Smith31cfef02014-05-21 00:33:49 +0000946 header "iomanip"
947 export *
948 }
949 module ios {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400950 @requires_LIBCXX_ENABLE_LOCALIZATION@
Richard Smith31cfef02014-05-21 00:33:49 +0000951 header "ios"
952 export iosfwd
953 export *
Nikolas Klauser80840272022-02-04 13:04:33 +0100954
955 module __ios {
956 module fpos { private header "__ios/fpos.h" }
957 }
Richard Smith31cfef02014-05-21 00:33:49 +0000958 }
959 module iosfwd {
960 header "iosfwd"
961 export *
962 }
963 module iostream {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400964 @requires_LIBCXX_ENABLE_LOCALIZATION@
Richard Smith31cfef02014-05-21 00:33:49 +0000965 header "iostream"
966 export ios
967 export streambuf
968 export istream
969 export ostream
970 export *
971 }
972 module istream {
Louis Dionne4ccfe802022-05-23 16:48:47 -0400973 @requires_LIBCXX_ENABLE_LOCALIZATION@
Richard Smith31cfef02014-05-21 00:33:49 +0000974 header "istream"
975 // FIXME: should re-export ios, streambuf?
976 export *
977 }
978 module iterator {
979 header "iterator"
980 export *
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +0000981
982 module __iterator {
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000983 module access { private header "__iterator/access.h" }
Arthur O'Dwyer8c3f9fd2022-01-03 20:28:00 -0500984 module advance { private header "__iterator/advance.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000985 module back_insert_iterator { private header "__iterator/back_insert_iterator.h" }
Louis Dionne7d244ab2022-06-06 14:01:38 -0400986 module bounded_iter { private header "__iterator/bounded_iter.h" }
zoecarver6eb71a92021-05-27 09:23:19 -0700987 module common_iterator { private header "__iterator/common_iterator.h" }
Mark de Wever3a374152023-01-27 08:02:09 +0100988 module concepts {
989 private header "__iterator/concepts.h"
990 export concepts.equality_comparable
991 export type_traits.common_reference
992 }
zoecarverd3aca592021-07-13 11:06:10 -0700993 module counted_iterator { private header "__iterator/counted_iterator.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000994 module data { private header "__iterator/data.h" }
995 module default_sentinel { private header "__iterator/default_sentinel.h" }
996 module distance { private header "__iterator/distance.h" }
997 module empty { private header "__iterator/empty.h" }
998 module erase_if_container { private header "__iterator/erase_if_container.h" }
999 module front_insert_iterator { private header "__iterator/front_insert_iterator.h" }
1000 module incrementable_traits { private header "__iterator/incrementable_traits.h" }
Nikolas Klauser764ac5e2022-01-04 19:55:37 +01001001 module indirectly_comparable { private header "__iterator/indirectly_comparable.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001002 module insert_iterator { private header "__iterator/insert_iterator.h" }
1003 module istream_iterator { private header "__iterator/istream_iterator.h" }
1004 module istreambuf_iterator { private header "__iterator/istreambuf_iterator.h" }
1005 module iter_move { private header "__iterator/iter_move.h" }
1006 module iter_swap { private header "__iterator/iter_swap.h" }
1007 module iterator { private header "__iterator/iterator.h" }
1008 module iterator_traits { private header "__iterator/iterator_traits.h" }
Nikolas Klausercf03da92022-11-21 12:41:15 +01001009 module iterator_with_data { private header "__iterator/iterator_with_data.h" }
Mark de Wever888eff82022-10-16 20:48:12 +02001010 module mergeable {
1011 private header "__iterator/mergeable.h"
1012 export functional.__functional.ranges_operations
1013 }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001014 module move_iterator { private header "__iterator/move_iterator.h" }
Arthur O'Dwyer6b240aa2022-01-19 06:26:52 -05001015 module move_sentinel { private header "__iterator/move_sentinel.h" }
Arthur O'Dwyer8c3f9fd2022-01-03 20:28:00 -05001016 module next { private header "__iterator/next.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001017 module ostream_iterator { private header "__iterator/ostream_iterator.h" }
Louis Dionnedc9836e2022-04-03 12:40:39 -04001018 module ostreambuf_iterator {
1019 private header "__iterator/ostreambuf_iterator.h"
1020 export iosfwd
1021 }
Konstantin Varlamovea9734e2022-02-09 20:32:56 -08001022 module permutable { private header "__iterator/permutable.h" }
Arthur O'Dwyer8c3f9fd2022-01-03 20:28:00 -05001023 module prev { private header "__iterator/prev.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001024 module projected { private header "__iterator/projected.h" }
Louis Dionned137f092022-11-28 08:01:46 -05001025 module readable_traits {
1026 private header "__iterator/readable_traits.h"
1027 export __iterator.iterator_traits
1028 }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001029 module reverse_access { private header "__iterator/reverse_access.h" }
1030 module reverse_iterator { private header "__iterator/reverse_iterator.h" }
Nikolas Klauserbb446e82022-11-20 23:16:20 +01001031 module segmented_iterator { private header "__iterator/segmented_iterator.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001032 module size { private header "__iterator/size.h" }
Mark de Wever888eff82022-10-16 20:48:12 +02001033 module sortable {
1034 private header "__iterator/sortable.h"
1035 export functional.__functional.ranges_operations
1036 }
zoecarver23001f72021-08-11 11:16:27 -07001037 module unreachable_sentinel { private header "__iterator/unreachable_sentinel.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001038 module wrap_iter { private header "__iterator/wrap_iter.h" }
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +00001039 }
Richard Smith31cfef02014-05-21 00:33:49 +00001040 }
Olivier Giroux161e6e82020-02-18 09:58:34 -05001041 module latch {
Louis Dionne4ccfe802022-05-23 16:48:47 -04001042 @requires_LIBCXX_ENABLE_THREADS@
Olivier Giroux161e6e82020-02-18 09:58:34 -05001043 header "latch"
1044 export *
1045 }
Nikolas Klauserb46e28a2022-07-03 16:52:22 +02001046
1047 module __debug_utils {
1048 module randomize_range { private header "__debug_utils/randomize_range.h" }
1049 }
1050
Richard Smith31cfef02014-05-21 00:33:49 +00001051 module limits {
1052 header "limits"
1053 export *
1054 }
1055 module list {
1056 header "list"
1057 export initializer_list
1058 export *
1059 }
1060 module locale {
Louis Dionne4ccfe802022-05-23 16:48:47 -04001061 @requires_LIBCXX_ENABLE_LOCALIZATION@
Richard Smith31cfef02014-05-21 00:33:49 +00001062 header "locale"
1063 export *
1064 }
1065 module map {
1066 header "map"
1067 export initializer_list
1068 export *
1069 }
1070 module memory {
1071 header "memory"
1072 export *
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +00001073
1074 module __memory {
Konstantin Varlamov145c5df2021-12-14 14:11:37 -08001075 module addressof { private header "__memory/addressof.h" }
Nikolas Klauser0b5df932022-09-05 00:01:15 +02001076 module align { private header "__memory/align.h" }
Louis Dionnebb8099a2022-12-02 13:45:49 -08001077 module aligned_alloc { private header "__memory/aligned_alloc.h" }
Nikolas Klauserc513eba2022-04-09 09:41:19 +02001078 module allocate_at_least { private header "__memory/allocate_at_least.h" }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -08001079 module allocation_guard { private header "__memory/allocation_guard.h" }
1080 module allocator { private header "__memory/allocator.h" }
1081 module allocator_arg_t { private header "__memory/allocator_arg_t.h" }
Nikolas Klauserd858e752022-09-22 21:53:13 +02001082 module allocator_destructor { private header "__memory/allocator_destructor.h" }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -08001083 module allocator_traits { private header "__memory/allocator_traits.h" }
Louis Dionne28e2f6c2022-02-03 14:45:22 -05001084 module assume_aligned { private header "__memory/assume_aligned.h" }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -08001085 module auto_ptr { private header "__memory/auto_ptr.h" }
Nikolas Klauser0b5df932022-09-05 00:01:15 +02001086 module builtin_new_allocator { private header "__memory/builtin_new_allocator.h" }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -08001087 module compressed_pair { private header "__memory/compressed_pair.h" }
Louis Dionne9bedd7a2023-02-02 18:50:10 -05001088 module concepts {
1089 private header "__memory/concepts.h"
1090 export type_traits.remove_reference
1091 }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -08001092 module construct_at { private header "__memory/construct_at.h" }
Nikolas Klauser0b5df932022-09-05 00:01:15 +02001093 module destruct_n { private header "__memory/destruct_n.h" }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -08001094 module pointer_traits { private header "__memory/pointer_traits.h" }
Arthur O'Dwyer8c3f9fd2022-01-03 20:28:00 -05001095 module ranges_construct_at { private header "__memory/ranges_construct_at.h" }
Mark de Wevercc275d62022-10-25 21:56:01 +02001096 module ranges_uninitialized_algorithms {
1097 private header "__memory/ranges_uninitialized_algorithms.h"
1098 export algorithm.__algorithm.in_out_result
1099 }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -08001100 module raw_storage_iterator { private header "__memory/raw_storage_iterator.h" }
1101 module shared_ptr { private header "__memory/shared_ptr.h" }
Nikolas Klauser35080b42022-07-26 16:13:56 +02001102 module swap_allocator { private header "__memory/swap_allocator.h" }
Nikolas Klauser0b5df932022-09-05 00:01:15 +02001103 module temp_value { private header "__memory/temp_value.h" }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -08001104 module temporary_buffer { private header "__memory/temporary_buffer.h" }
1105 module uninitialized_algorithms { private header "__memory/uninitialized_algorithms.h" }
1106 module unique_ptr { private header "__memory/unique_ptr.h" }
1107 module uses_allocator { private header "__memory/uses_allocator.h" }
Nikolas Klauser96fa4132022-10-04 17:55:42 +02001108 module uses_allocator_construction { private header "__memory/uses_allocator_construction.h" }
Konstantin Varlamov139228a2021-12-20 00:24:10 -08001109 module voidify { private header "__memory/voidify.h" }
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +00001110 }
Richard Smith31cfef02014-05-21 00:33:49 +00001111 }
Arthur O'Dwyerebf2d342022-10-06 16:53:30 -04001112 module memory_resource {
1113 header "memory_resource"
1114 export *
1115
1116 module __memory_resource {
1117 module memory_resource { private header "__memory_resource/memory_resource.h" }
Nikolas Klauser713bfda2022-10-13 01:03:58 +02001118 module memory_resource_fwd { private header "__fwd/memory_resource.h" }
Arthur O'Dwyerebf2d342022-10-06 16:53:30 -04001119 module monotonic_buffer_resource { private header "__memory_resource/monotonic_buffer_resource.h" }
1120 module polymorphic_allocator { private header "__memory_resource/polymorphic_allocator.h" }
1121 module pool_options { private header "__memory_resource/pool_options.h" }
1122 module synchronized_pool_resource { private header "__memory_resource/synchronized_pool_resource.h" }
1123 module unsynchronized_pool_resource { private header "__memory_resource/unsynchronized_pool_resource.h" }
1124 }
1125 }
Richard Smith31cfef02014-05-21 00:33:49 +00001126 module mutex {
Louis Dionne4ccfe802022-05-23 16:48:47 -04001127 @requires_LIBCXX_ENABLE_THREADS@
Richard Smith31cfef02014-05-21 00:33:49 +00001128 header "mutex"
1129 export *
1130 }
1131 module new {
1132 header "new"
1133 export *
1134 }
Raul Tambreafcedea2020-06-19 12:43:33 +05301135 module numbers {
1136 header "numbers"
1137 export *
1138 }
Richard Smith31cfef02014-05-21 00:33:49 +00001139 module numeric {
1140 header "numeric"
1141 export *
Christopher Di Bella0df29b32021-12-01 01:36:32 +00001142
1143 module __numeric {
1144 module accumulate { private header "__numeric/accumulate.h" }
1145 module adjacent_difference { private header "__numeric/adjacent_difference.h" }
1146 module exclusive_scan { private header "__numeric/exclusive_scan.h" }
1147 module gcd_lcm { private header "__numeric/gcd_lcm.h" }
1148 module inclusive_scan { private header "__numeric/inclusive_scan.h" }
1149 module inner_product { private header "__numeric/inner_product.h" }
1150 module iota { private header "__numeric/iota.h" }
1151 module midpoint { private header "__numeric/midpoint.h" }
1152 module partial_sum { private header "__numeric/partial_sum.h" }
1153 module reduce { private header "__numeric/reduce.h" }
1154 module transform_exclusive_scan { private header "__numeric/transform_exclusive_scan.h" }
1155 module transform_inclusive_scan { private header "__numeric/transform_inclusive_scan.h" }
1156 module transform_reduce { private header "__numeric/transform_reduce.h" }
1157 }
Richard Smith31cfef02014-05-21 00:33:49 +00001158 }
Eric Fiselier006458b2016-12-05 23:33:19 +00001159 module optional {
1160 header "optional"
1161 export *
1162 }
Richard Smith31cfef02014-05-21 00:33:49 +00001163 module ostream {
Louis Dionne4ccfe802022-05-23 16:48:47 -04001164 @requires_LIBCXX_ENABLE_LOCALIZATION@
Richard Smith31cfef02014-05-21 00:33:49 +00001165 header "ostream"
1166 // FIXME: should re-export ios, streambuf?
1167 export *
1168 }
1169 module queue {
1170 header "queue"
1171 export initializer_list
1172 export *
1173 }
1174 module random {
1175 header "random"
1176 export initializer_list
1177 export *
Louis Dionnea60dd872021-06-17 11:30:11 -04001178
1179 module __random {
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001180 module bernoulli_distribution { private header "__random/bernoulli_distribution.h" }
1181 module binomial_distribution { private header "__random/binomial_distribution.h" }
1182 module cauchy_distribution { private header "__random/cauchy_distribution.h" }
1183 module chi_squared_distribution { private header "__random/chi_squared_distribution.h" }
Louis Dionneafbc3312021-12-07 16:34:13 -05001184 module clamp_to_integral { private header "__random/clamp_to_integral.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001185 module default_random_engine { private header "__random/default_random_engine.h" }
1186 module discard_block_engine { private header "__random/discard_block_engine.h" }
Mark de Weveradc1d1c2022-09-03 13:37:09 +02001187 module discrete_distribution {
1188 private header "__random/discrete_distribution.h"
1189 export vector
1190 }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001191 module exponential_distribution { private header "__random/exponential_distribution.h" }
1192 module extreme_value_distribution { private header "__random/extreme_value_distribution.h" }
1193 module fisher_f_distribution { private header "__random/fisher_f_distribution.h" }
1194 module gamma_distribution { private header "__random/gamma_distribution.h" }
1195 module generate_canonical { private header "__random/generate_canonical.h" }
1196 module geometric_distribution { private header "__random/geometric_distribution.h" }
1197 module independent_bits_engine { private header "__random/independent_bits_engine.h" }
1198 module is_seed_sequence { private header "__random/is_seed_sequence.h" }
Arthur O'Dwyer681dcb82021-12-01 19:55:26 -05001199 module is_valid { private header "__random/is_valid.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001200 module knuth_b { private header "__random/knuth_b.h" }
1201 module linear_congruential_engine { private header "__random/linear_congruential_engine.h" }
1202 module log2 { private header "__random/log2.h" }
1203 module lognormal_distribution { private header "__random/lognormal_distribution.h" }
1204 module mersenne_twister_engine { private header "__random/mersenne_twister_engine.h" }
1205 module negative_binomial_distribution { private header "__random/negative_binomial_distribution.h" }
1206 module normal_distribution { private header "__random/normal_distribution.h" }
Mark de Weveradc1d1c2022-09-03 13:37:09 +02001207 module piecewise_constant_distribution {
1208 private header "__random/piecewise_constant_distribution.h"
1209 export vector
1210 }
1211 module piecewise_linear_distribution {
1212 private header "__random/piecewise_linear_distribution.h"
1213 export vector
1214 }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001215 module poisson_distribution { private header "__random/poisson_distribution.h" }
1216 module random_device { private header "__random/random_device.h" }
1217 module ranlux { private header "__random/ranlux.h" }
1218 module seed_seq { private header "__random/seed_seq.h" }
1219 module shuffle_order_engine { private header "__random/shuffle_order_engine.h" }
1220 module student_t_distribution { private header "__random/student_t_distribution.h" }
1221 module subtract_with_carry_engine { private header "__random/subtract_with_carry_engine.h" }
1222 module uniform_int_distribution { private header "__random/uniform_int_distribution.h" }
1223 module uniform_random_bit_generator { private header "__random/uniform_random_bit_generator.h" }
1224 module uniform_real_distribution { private header "__random/uniform_real_distribution.h" }
1225 module weibull_distribution { private header "__random/weibull_distribution.h" }
Louis Dionnea60dd872021-06-17 11:30:11 -04001226 }
Richard Smith31cfef02014-05-21 00:33:49 +00001227 }
Mark de Weveraf59b2d2020-11-24 18:08:02 +01001228 module ranges {
1229 header "ranges"
Christopher Di Bella66ce1292021-04-11 05:08:32 +00001230 export compare
1231 export initializer_list
1232 export iterator
Mark de Weveraf59b2d2020-11-24 18:08:02 +01001233 export *
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +00001234
1235 module __ranges {
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001236 module access { private header "__ranges/access.h" }
Louis Dionne8c2023c2021-08-11 17:36:35 -04001237 module all {
1238 private header "__ranges/all.h"
1239 export functional.__functional.compose
1240 export functional.__functional.perfect_forward
1241 }
Nikolas Klauser0e3d3a02022-12-11 11:32:54 +01001242 module as_rvalue_view { private header "__ranges/as_rvalue_view.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001243 module common_view { private header "__ranges/common_view.h" }
1244 module concepts { private header "__ranges/concepts.h" }
1245 module copyable_box { private header "__ranges/copyable_box.h" }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -08001246 module counted {
1247 private header "__ranges/counted.h"
1248 export span
1249 }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001250 module dangling { private header "__ranges/dangling.h" }
1251 module data { private header "__ranges/data.h" }
1252 module drop_view { private header "__ranges/drop_view.h" }
Hui Xie65b8e4b2022-10-07 18:07:54 +01001253 module drop_while_view { private header "__ranges/drop_while_view.h" }
Hui Xie885d5d12022-11-04 11:53:38 +00001254 module elements_view { private header "__ranges/elements_view.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001255 module empty { private header "__ranges/empty.h" }
1256 module empty_view { private header "__ranges/empty_view.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001257 module enable_borrowed_range { private header "__ranges/enable_borrowed_range.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001258 module enable_view { private header "__ranges/enable_view.h" }
Louis Dionne5082abe2021-07-14 17:01:25 -04001259 module filter_view { private header "__ranges/filter_view.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001260 module iota_view { private header "__ranges/iota_view.h" }
Hui Xie31d65522022-09-05 16:45:47 +01001261 module istream_view {
1262 @requires_LIBCXX_ENABLE_LOCALIZATION@
1263 private header "__ranges/istream_view.h"
1264 }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001265 module join_view { private header "__ranges/join_view.h" }
Konstantin Varlamova48cd202022-04-12 22:27:07 -07001266 module lazy_split_view { private header "__ranges/lazy_split_view.h" }
Louis Dionneb64bcf92021-07-19 12:12:49 -04001267 module non_propagating_cache { private header "__ranges/non_propagating_cache.h" }
Arthur O'Dwyerf7078ac2022-01-09 09:00:35 -05001268 module owning_view { private header "__ranges/owning_view.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001269 module range_adaptor { private header "__ranges/range_adaptor.h" }
Konstantin Varlamove9cdcbc2022-02-14 03:29:18 -08001270 module rbegin { private header "__ranges/rbegin.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001271 module ref_view { private header "__ranges/ref_view.h" }
Konstantin Varlamove9cdcbc2022-02-14 03:29:18 -08001272 module rend { private header "__ranges/rend.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001273 module reverse_view { private header "__ranges/reverse_view.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001274 module single_view { private header "__ranges/single_view.h" }
Arthur O'Dwyer93488582022-01-10 13:23:19 -05001275 module size { private header "__ranges/size.h" }
Hui29e48882023-01-18 23:26:34 +00001276 module split_view { private header "__ranges/split_view.h" }
Hui Xie885d5d12022-11-04 11:53:38 +00001277 module subrange {
1278 private header "__ranges/subrange.h"
1279
1280 module subrange_fwd { private header "__fwd/subrange.h" }
1281 }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001282 module take_view { private header "__ranges/take_view.h" }
Hui Xiebac95aa2022-09-30 13:06:36 +01001283 module take_while_view { private header "__ranges/take_while_view.h" }
Louis Dionne8c2023c2021-08-11 17:36:35 -04001284 module transform_view {
1285 private header "__ranges/transform_view.h"
1286 export functional.__functional.bind_back
1287 export functional.__functional.perfect_forward
1288 }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001289 module view_interface { private header "__ranges/view_interface.h" }
Arthur O'Dwyerd0264b12022-02-02 12:23:51 -05001290 module views { private header "__ranges/views.h" }
Hui Xieb77c4c22022-04-25 12:18:54 +02001291 module zip_view { private header "__ranges/zip_view.h" }
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +00001292 }
Mark de Weveraf59b2d2020-11-24 18:08:02 +01001293 }
Richard Smith31cfef02014-05-21 00:33:49 +00001294 module ratio {
1295 header "ratio"
1296 export *
1297 }
1298 module regex {
Louis Dionne4ccfe802022-05-23 16:48:47 -04001299 @requires_LIBCXX_ENABLE_LOCALIZATION@
Richard Smith31cfef02014-05-21 00:33:49 +00001300 header "regex"
1301 export initializer_list
1302 export *
1303 }
1304 module scoped_allocator {
1305 header "scoped_allocator"
1306 export *
1307 }
Olivier Giroux161e6e82020-02-18 09:58:34 -05001308 module semaphore {
Louis Dionne4ccfe802022-05-23 16:48:47 -04001309 @requires_LIBCXX_ENABLE_THREADS@
Olivier Giroux161e6e82020-02-18 09:58:34 -05001310 header "semaphore"
1311 export *
1312 }
Richard Smith31cfef02014-05-21 00:33:49 +00001313 module set {
1314 header "set"
1315 export initializer_list
1316 export *
1317 }
Christopher Di Bellaa75331d2021-07-15 06:41:17 +00001318 module shared_mutex {
Louis Dionne4ccfe802022-05-23 16:48:47 -04001319 @requires_LIBCXX_ENABLE_THREADS@
Christopher Di Bellaa75331d2021-07-15 06:41:17 +00001320 header "shared_mutex"
1321 export version
1322 }
James Y Knightb35329a2023-01-11 15:53:03 -05001323 module source_location {
1324 header "source_location"
1325 export *
1326 }
Christopher Di Bellaa75331d2021-07-15 06:41:17 +00001327 module span {
1328 header "span"
1329 export ranges.__ranges.enable_borrowed_range
1330 export version
Konstantin Varlamov3d7c2e92022-05-06 13:33:33 -07001331 module span_fwd { private header "__fwd/span.h" }
Christopher Di Bellaa75331d2021-07-15 06:41:17 +00001332 }
Richard Smith31cfef02014-05-21 00:33:49 +00001333 module sstream {
Louis Dionne4ccfe802022-05-23 16:48:47 -04001334 @requires_LIBCXX_ENABLE_LOCALIZATION@
Richard Smith31cfef02014-05-21 00:33:49 +00001335 header "sstream"
1336 // FIXME: should re-export istream, ostream, ios, streambuf, string?
1337 export *
1338 }
1339 module stack {
1340 header "stack"
1341 export initializer_list
1342 export *
1343 }
1344 module stdexcept {
1345 header "stdexcept"
1346 export *
1347 }
1348 module streambuf {
Louis Dionne4ccfe802022-05-23 16:48:47 -04001349 @requires_LIBCXX_ENABLE_LOCALIZATION@
Richard Smith31cfef02014-05-21 00:33:49 +00001350 header "streambuf"
1351 export *
1352 }
1353 module string {
1354 header "string"
1355 export initializer_list
Eric Fiselier2d357f72016-12-05 23:53:23 +00001356 export string_view
Nikolas Klauser11a0ff32022-06-06 23:35:24 +02001357 module __string {
1358 module char_traits { private header "__string/char_traits.h" }
1359 module extern_template_lists { private header "__string/extern_template_lists.h" }
Nikolas Klauser713bfda2022-10-13 01:03:58 +02001360 module string_fwd { private header "__fwd/string.h" }
Nikolas Klauser11a0ff32022-06-06 23:35:24 +02001361 }
Eric Fiselier2d357f72016-12-05 23:53:23 +00001362 export *
1363 }
1364 module string_view {
1365 header "string_view"
1366 export initializer_list
Richard Smith31cfef02014-05-21 00:33:49 +00001367 export *
Konstantin Varlamov3d7c2e92022-05-06 13:33:33 -07001368 module string_view_fwd { private header "__fwd/string_view.h" }
Richard Smith31cfef02014-05-21 00:33:49 +00001369 }
1370 module strstream {
Louis Dionne4ccfe802022-05-23 16:48:47 -04001371 @requires_LIBCXX_ENABLE_LOCALIZATION@
Richard Smith31cfef02014-05-21 00:33:49 +00001372 header "strstream"
Eric Fiselierbdc20862016-12-05 23:16:07 +00001373 export *
Richard Smith31cfef02014-05-21 00:33:49 +00001374 }
1375 module system_error {
1376 header "system_error"
1377 export *
1378 }
1379 module thread {
Louis Dionne4ccfe802022-05-23 16:48:47 -04001380 @requires_LIBCXX_ENABLE_THREADS@
Richard Smith31cfef02014-05-21 00:33:49 +00001381 header "thread"
1382 export *
Louis Dionneaf2d2a82021-11-17 10:59:31 -05001383
1384 module __thread {
Louis Dionnecaf26832022-01-10 09:43:29 -05001385 module poll_with_backoff { private header "__thread/poll_with_backoff.h" }
1386 module timed_backoff_policy { private header "__thread/timed_backoff_policy.h" }
Louis Dionneaf2d2a82021-11-17 10:59:31 -05001387 }
Richard Smith31cfef02014-05-21 00:33:49 +00001388 }
1389 module tuple {
1390 header "tuple"
1391 export *
Nikolas Klausera22eabb2022-09-05 14:38:24 +02001392
Michał Górny7cfb5662022-12-04 07:39:41 +01001393 module apply_cv { private header "__tuple_dir/apply_cv.h" }
Nikolas Klausera22eabb2022-09-05 14:38:24 +02001394 module get_fwd { private header "__fwd/get.h" }
Michał Górny7cfb5662022-12-04 07:39:41 +01001395 module make_tuple_types { private header "__tuple_dir/make_tuple_types.h" }
Hui Xie885d5d12022-11-04 11:53:38 +00001396 module pair_like { private header "__tuple_dir/pair_like.h" }
Michał Górny7cfb5662022-12-04 07:39:41 +01001397 module sfinae_helpers { private header "__tuple_dir/sfinae_helpers.h" }
1398 module tuple_element { private header "__tuple_dir/tuple_element.h" }
Nikolas Klausera22eabb2022-09-05 14:38:24 +02001399 module tuple_fwd { private header "__fwd/tuple.h" }
Michał Górny7cfb5662022-12-04 07:39:41 +01001400 module tuple_indices { private header "__tuple_dir/tuple_indices.h" }
1401 module tuple_like { private header "__tuple_dir/tuple_like.h" }
Hui Xie885d5d12022-11-04 11:53:38 +00001402 module tuple_like_ext { private header "__tuple_dir/tuple_like_ext.h" }
Michał Górny7cfb5662022-12-04 07:39:41 +01001403 module tuple_size { private header "__tuple_dir/tuple_size.h" }
1404 module tuple_types { private header "__tuple_dir/tuple_types.h" }
Richard Smith31cfef02014-05-21 00:33:49 +00001405 }
1406 module type_traits {
1407 header "type_traits"
Christopher Di Bella599a6c62021-06-09 23:10:17 +00001408 export functional.__functional.unwrap_ref
Richard Smith31cfef02014-05-21 00:33:49 +00001409 export *
Nikolas Klauser5c440172022-04-07 13:40:53 +02001410
Nikolas Klauser23713ea2022-08-13 23:10:31 +02001411 module add_const { private header "__type_traits/add_const.h" }
1412 module add_cv { private header "__type_traits/add_cv.h" }
1413 module add_lvalue_reference { private header "__type_traits/add_lvalue_reference.h" }
1414 module add_pointer { private header "__type_traits/add_pointer.h" }
1415 module add_rvalue_reference { private header "__type_traits/add_rvalue_reference.h" }
1416 module add_volatile { private header "__type_traits/add_volatile.h" }
1417 module aligned_storage { private header "__type_traits/aligned_storage.h" }
1418 module aligned_union { private header "__type_traits/aligned_union.h" }
1419 module alignment_of { private header "__type_traits/alignment_of.h" }
1420 module apply_cv { private header "__type_traits/apply_cv.h" }
1421 module can_extract_key { private header "__type_traits/can_extract_key.h" }
1422 module common_reference { private header "__type_traits/common_reference.h" }
1423 module common_type { private header "__type_traits/common_type.h" }
1424 module conditional { private header "__type_traits/conditional.h" }
1425 module conjunction { private header "__type_traits/conjunction.h" }
1426 module copy_cv { private header "__type_traits/copy_cv.h" }
1427 module copy_cvref { private header "__type_traits/copy_cvref.h" }
1428 module decay { private header "__type_traits/decay.h" }
1429 module dependent_type { private header "__type_traits/dependent_type.h" }
1430 module disjunction { private header "__type_traits/disjunction.h" }
1431 module enable_if { private header "__type_traits/enable_if.h" }
1432 module extent { private header "__type_traits/extent.h" }
1433 module has_unique_object_representation { private header "__type_traits/has_unique_object_representation.h" }
1434 module has_virtual_destructor { private header "__type_traits/has_virtual_destructor.h" }
1435 module integral_constant { private header "__type_traits/integral_constant.h" }
1436 module is_abstract { private header "__type_traits/is_abstract.h" }
1437 module is_aggregate { private header "__type_traits/is_aggregate.h" }
Nikolas Klauser0b5df932022-09-05 00:01:15 +02001438 module is_allocator { private header "__type_traits/is_allocator.h" }
varconsta6e67c12023-01-13 16:56:58 -08001439 module is_always_bitcastable { private header "__type_traits/is_always_bitcastable.h" }
Nikolas Klauser8a596ba2022-12-20 19:47:35 +01001440 module is_arithmetic {
1441 private header "__type_traits/is_arithmetic.h"
1442 export integral_constant
1443 }
Nikolas Klauserca7ac532022-12-21 00:07:17 +01001444 module is_array {
1445 private header "__type_traits/is_array.h"
1446 export integral_constant
1447 }
Nikolas Klauser23713ea2022-08-13 23:10:31 +02001448 module is_assignable { private header "__type_traits/is_assignable.h" }
1449 module is_base_of { private header "__type_traits/is_base_of.h" }
1450 module is_bounded_array { private header "__type_traits/is_bounded_array.h" }
1451 module is_callable { private header "__type_traits/is_callable.h" }
1452 module is_char_like_type { private header "__type_traits/is_char_like_type.h" }
1453 module is_class { private header "__type_traits/is_class.h" }
1454 module is_compound { private header "__type_traits/is_compound.h" }
1455 module is_const { private header "__type_traits/is_const.h" }
1456 module is_constant_evaluated { private header "__type_traits/is_constant_evaluated.h" }
1457 module is_constructible { private header "__type_traits/is_constructible.h" }
1458 module is_convertible { private header "__type_traits/is_convertible.h" }
1459 module is_copy_assignable { private header "__type_traits/is_copy_assignable.h" }
1460 module is_copy_constructible { private header "__type_traits/is_copy_constructible.h" }
Nikolas Klauserfce5e682022-12-20 21:13:12 +01001461 module is_core_convertible {
1462 private header "__type_traits/is_core_convertible.h"
1463 export integral_constant
1464 }
Nikolas Klauser23713ea2022-08-13 23:10:31 +02001465 module is_default_constructible { private header "__type_traits/is_default_constructible.h" }
1466 module is_destructible { private header "__type_traits/is_destructible.h" }
1467 module is_empty { private header "__type_traits/is_empty.h" }
1468 module is_enum { private header "__type_traits/is_enum.h" }
1469 module is_final { private header "__type_traits/is_final.h" }
1470 module is_floating_point { private header "__type_traits/is_floating_point.h" }
1471 module is_function { private header "__type_traits/is_function.h" }
1472 module is_fundamental { private header "__type_traits/is_fundamental.h" }
1473 module is_implicitly_default_constructible { private header "__type_traits/is_implicitly_default_constructible.h" }
1474 module is_integral { private header "__type_traits/is_integral.h" }
1475 module is_literal_type { private header "__type_traits/is_literal_type.h" }
1476 module is_member_function_pointer { private header "__type_traits/is_member_function_pointer.h" }
1477 module is_member_object_pointer { private header "__type_traits/is_member_object_pointer.h" }
1478 module is_member_pointer { private header "__type_traits/is_member_pointer.h" }
1479 module is_move_assignable { private header "__type_traits/is_move_assignable.h" }
1480 module is_move_constructible { private header "__type_traits/is_move_constructible.h" }
1481 module is_nothrow_assignable { private header "__type_traits/is_nothrow_assignable.h" }
1482 module is_nothrow_constructible { private header "__type_traits/is_nothrow_constructible.h" }
1483 module is_nothrow_convertible { private header "__type_traits/is_nothrow_convertible.h" }
1484 module is_nothrow_copy_assignable { private header "__type_traits/is_nothrow_copy_assignable.h" }
1485 module is_nothrow_copy_constructible { private header "__type_traits/is_nothrow_copy_constructible.h" }
1486 module is_nothrow_default_constructible { private header "__type_traits/is_nothrow_default_constructible.h" }
1487 module is_nothrow_destructible { private header "__type_traits/is_nothrow_destructible.h" }
1488 module is_nothrow_move_assignable { private header "__type_traits/is_nothrow_move_assignable.h" }
1489 module is_nothrow_move_constructible { private header "__type_traits/is_nothrow_move_constructible.h" }
1490 module is_null_pointer { private header "__type_traits/is_null_pointer.h" }
1491 module is_object { private header "__type_traits/is_object.h" }
1492 module is_pod { private header "__type_traits/is_pod.h" }
1493 module is_pointer { private header "__type_traits/is_pointer.h" }
1494 module is_polymorphic { private header "__type_traits/is_polymorphic.h" }
1495 module is_primary_template { private header "__type_traits/is_primary_template.h" }
1496 module is_reference { private header "__type_traits/is_reference.h" }
1497 module is_reference_wrapper { private header "__type_traits/is_reference_wrapper.h" }
1498 module is_referenceable { private header "__type_traits/is_referenceable.h" }
Nikolas Klauser0e76f352022-12-20 18:01:34 +01001499 module is_same {
1500 private header "__type_traits/is_same.h"
1501 export type_traits.integral_constant
1502 }
Nikolas Klauser23713ea2022-08-13 23:10:31 +02001503 module is_scalar { private header "__type_traits/is_scalar.h" }
1504 module is_scoped_enum { private header "__type_traits/is_scoped_enum.h" }
1505 module is_signed { private header "__type_traits/is_signed.h" }
1506 module is_signed_integer { private header "__type_traits/is_signed_integer.h" }
Mark de Wever03d2f082022-10-19 19:50:48 +02001507 module is_specialization { private header "__type_traits/is_specialization.h" }
Nikolas Klauser23713ea2022-08-13 23:10:31 +02001508 module is_standard_layout { private header "__type_traits/is_standard_layout.h" }
1509 module is_swappable { private header "__type_traits/is_swappable.h" }
1510 module is_trivial { private header "__type_traits/is_trivial.h" }
1511 module is_trivially_assignable { private header "__type_traits/is_trivially_assignable.h" }
1512 module is_trivially_constructible { private header "__type_traits/is_trivially_constructible.h" }
1513 module is_trivially_copy_assignable { private header "__type_traits/is_trivially_copy_assignable.h" }
1514 module is_trivially_copy_constructible { private header "__type_traits/is_trivially_copy_constructible.h" }
1515 module is_trivially_copyable { private header "__type_traits/is_trivially_copyable.h" }
1516 module is_trivially_default_constructible { private header "__type_traits/is_trivially_default_constructible.h" }
1517 module is_trivially_destructible { private header "__type_traits/is_trivially_destructible.h" }
1518 module is_trivially_move_assignable { private header "__type_traits/is_trivially_move_assignable.h" }
1519 module is_trivially_move_constructible { private header "__type_traits/is_trivially_move_constructible.h" }
1520 module is_unbounded_array { private header "__type_traits/is_unbounded_array.h" }
1521 module is_union { private header "__type_traits/is_union.h" }
1522 module is_unsigned { private header "__type_traits/is_unsigned.h" }
1523 module is_unsigned_integer { private header "__type_traits/is_unsigned_integer.h" }
1524 module is_valid_expansion { private header "__type_traits/is_valid_expansion.h" }
Nikolas Klauserfce5e682022-12-20 21:13:12 +01001525 module is_void {
1526 private header "__type_traits/is_void.h"
1527 export integral_constant
1528 }
Nikolas Klauser23713ea2022-08-13 23:10:31 +02001529 module is_volatile { private header "__type_traits/is_volatile.h" }
1530 module lazy { private header "__type_traits/lazy.h" }
1531 module make_32_64_or_128_bit { private header "__type_traits/make_32_64_or_128_bit.h" }
1532 module make_const_lvalue_ref { private header "__type_traits/make_const_lvalue_ref.h" }
1533 module make_signed { private header "__type_traits/make_signed.h" }
1534 module make_unsigned { private header "__type_traits/make_unsigned.h" }
1535 module maybe_const { private header "__type_traits/maybe_const.h" }
1536 module nat { private header "__type_traits/nat.h" }
1537 module negation { private header "__type_traits/negation.h" }
Nikolas Klauser0b5df932022-09-05 00:01:15 +02001538 module noexcept_move_assign_container { private header "__type_traits/noexcept_move_assign_container.h" }
Nikolas Klauser23713ea2022-08-13 23:10:31 +02001539 module promote { private header "__type_traits/promote.h" }
1540 module rank { private header "__type_traits/rank.h" }
1541 module remove_all_extents { private header "__type_traits/remove_all_extents.h" }
1542 module remove_const { private header "__type_traits/remove_const.h" }
1543 module remove_const_ref { private header "__type_traits/remove_const_ref.h" }
1544 module remove_cv { private header "__type_traits/remove_cv.h" }
1545 module remove_cvref { private header "__type_traits/remove_cvref.h" }
1546 module remove_extent { private header "__type_traits/remove_extent.h" }
1547 module remove_pointer { private header "__type_traits/remove_pointer.h" }
1548 module remove_reference { private header "__type_traits/remove_reference.h" }
1549 module remove_volatile { private header "__type_traits/remove_volatile.h" }
1550 module result_of { private header "__type_traits/result_of.h" }
Nikolas Klauser29485402022-10-01 21:25:13 +02001551 module strip_signature { private header "__type_traits/strip_signature.h" }
Nikolas Klauser23713ea2022-08-13 23:10:31 +02001552 module type_identity { private header "__type_traits/type_identity.h" }
1553 module type_list { private header "__type_traits/type_list.h" }
1554 module underlying_type { private header "__type_traits/underlying_type.h" }
1555 module void_t { private header "__type_traits/void_t.h" }
Richard Smith31cfef02014-05-21 00:33:49 +00001556 }
1557 module typeindex {
1558 header "typeindex"
1559 export *
1560 }
1561 module typeinfo {
1562 header "typeinfo"
1563 export *
1564 }
1565 module unordered_map {
1566 header "unordered_map"
1567 export initializer_list
1568 export *
1569 }
1570 module unordered_set {
1571 header "unordered_set"
1572 export initializer_list
1573 export *
1574 }
1575 module utility {
1576 header "utility"
1577 export initializer_list
1578 export *
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +00001579
1580 module __utility {
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001581 module as_const { private header "__utility/as_const.h" }
Arthur O'Dwyer423e14b2021-12-13 19:21:38 -05001582 module auto_cast { private header "__utility/auto_cast.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001583 module cmp { private header "__utility/cmp.h" }
Nikolas Klauser23713ea2022-08-13 23:10:31 +02001584 module convert_to_integral { private header "__utility/convert_to_integral.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001585 module declval { private header "__utility/declval.h" }
Nikolas Klauserf5ac2552022-12-08 09:40:54 +01001586 module exception_guard { private header "__utility/exception_guard.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001587 module exchange { private header "__utility/exchange.h" }
1588 module forward { private header "__utility/forward.h" }
Igor Zhukov57ea60e2022-08-21 22:21:08 +07001589 module forward_like { private header "__utility/forward_like.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001590 module in_place { private header "__utility/in_place.h" }
1591 module integer_sequence { private header "__utility/integer_sequence.h" }
1592 module move { private header "__utility/move.h" }
1593 module pair { private header "__utility/pair.h" }
Nikolas Klauser23713ea2022-08-13 23:10:31 +02001594 module pair_fwd { private header "__fwd/pair.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001595 module piecewise_construct { private header "__utility/piecewise_construct.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001596 module priority_tag { private header "__utility/priority_tag.h" }
1597 module rel_ops { private header "__utility/rel_ops.h" }
1598 module swap { private header "__utility/swap.h" }
1599 module to_underlying { private header "__utility/to_underlying.h" }
Nikolas Klausercfe21472022-02-14 18:26:02 +01001600 module unreachable { private header "__utility/unreachable.h" }
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +00001601 }
Richard Smith31cfef02014-05-21 00:33:49 +00001602 }
1603 module valarray {
1604 header "valarray"
1605 export initializer_list
1606 export *
1607 }
Eric Fiselier006458b2016-12-05 23:33:19 +00001608 module variant {
1609 header "variant"
1610 export *
Mark de Wever3b269752021-07-07 21:27:27 +02001611
1612 module __variant {
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001613 module monostate { private header "__variant/monostate.h" }
Mark de Wever3b269752021-07-07 21:27:27 +02001614 }
Eric Fiselier006458b2016-12-05 23:33:19 +00001615 }
Richard Smith31cfef02014-05-21 00:33:49 +00001616 module vector {
1617 header "vector"
1618 export initializer_list
1619 export *
1620 }
Eric Fiseliera604a7d2018-04-04 04:21:54 +00001621 module version {
1622 header "version"
1623 export *
1624 }
Richard Smith31cfef02014-05-21 00:33:49 +00001625
1626 // FIXME: These should be private.
Louis Dionne9bdbeb32022-02-14 13:41:09 -05001627 module __assert { header "__assert" export * }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001628 module __availability { private header "__availability" export * }
1629 module __bit_reference { private header "__bit_reference" export * }
Arthur O'Dwyer33f2e932021-12-05 13:21:01 -05001630 module __debug { header "__debug" export * }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001631 module __errc { private header "__errc" export * }
Arthur O'Dwyer33f2e932021-12-05 13:21:01 -05001632 module __hash_table { header "__hash_table" export * }
Louis Dionne4ccfe802022-05-23 16:48:47 -04001633 module __locale {
1634 @requires_LIBCXX_ENABLE_LOCALIZATION@
1635 private header "__locale" export *
1636 }
Arthur O'Dwyer3f635112022-01-16 14:56:42 -05001637 module __mbstate_t { private header "__mbstate_t.h" export * }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001638 module __mutex_base { private header "__mutex_base" export * }
1639 module __node_handle { private header "__node_handle" export * }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001640 module __split_buffer { private header "__split_buffer" export * }
Louis Dionne4ccfe802022-05-23 16:48:47 -04001641 module __std_stream {
1642 @requires_LIBCXX_ENABLE_LOCALIZATION@
1643 private header "__std_stream" export *
1644 }
Arthur O'Dwyer33f2e932021-12-05 13:21:01 -05001645 module __threading_support { header "__threading_support" export * }
1646 module __tree { header "__tree" export * }
Arthur O'Dwyer33f2e932021-12-05 13:21:01 -05001647 module __undef_macros { header "__undef_macros" export * }
Louis Dionnea164faa2022-07-25 13:43:47 -04001648 module __verbose_abort { header "__verbose_abort" export * }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001649
1650 module experimental {
Eric Fiselier92ae1af2016-12-06 01:34:24 +00001651 requires cplusplus11
1652
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001653 module algorithm {
1654 header "experimental/algorithm"
1655 export *
1656 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001657 module deque {
1658 header "experimental/deque"
1659 export *
1660 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001661 module forward_list {
1662 header "experimental/forward_list"
1663 export *
1664 }
1665 module functional {
1666 header "experimental/functional"
1667 export *
1668 }
1669 module iterator {
1670 header "experimental/iterator"
1671 export *
1672 }
1673 module list {
1674 header "experimental/list"
1675 export *
1676 }
1677 module map {
1678 header "experimental/map"
1679 export *
1680 }
1681 module memory_resource {
1682 header "experimental/memory_resource"
1683 export *
1684 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001685 module propagate_const {
1686 header "experimental/propagate_const"
1687 export *
1688 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001689 module regex {
Louis Dionne4ccfe802022-05-23 16:48:47 -04001690 @requires_LIBCXX_ENABLE_LOCALIZATION@
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001691 header "experimental/regex"
1692 export *
1693 }
Tim Shen158e51b2018-04-23 21:54:06 +00001694 module simd {
1695 header "experimental/simd"
1696 export *
1697 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001698 module set {
1699 header "experimental/set"
1700 export *
1701 }
Marshall Clowd2ad87e2018-07-24 03:01:02 +00001702 module span {
1703 header "span"
1704 export *
1705 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001706 module string {
1707 header "experimental/string"
1708 export *
1709 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001710 module type_traits {
1711 header "experimental/type_traits"
1712 export *
1713 }
1714 module unordered_map {
1715 header "experimental/unordered_map"
1716 export *
1717 }
1718 module unordered_set {
1719 header "experimental/unordered_set"
1720 export *
1721 }
1722 module utility {
1723 header "experimental/utility"
1724 export *
1725 }
1726 module vector {
1727 header "experimental/vector"
1728 export *
1729 }
1730 // FIXME these should be private
1731 module __memory {
1732 header "experimental/__memory"
1733 export *
1734 }
1735 } // end experimental
Richard Smith31cfef02014-05-21 00:33:49 +00001736}