blob: 87969556a0a728b30af041fd91c2fc464cb9d017 [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"
6 header "__config_site"
7 export *
Eric Fiselier62b959c2016-12-08 06:37:41 +00008}
9
Richard Smith31cfef02014-05-21 00:33:49 +000010module std [system] {
Eric Fiselier62b959c2016-12-08 06:37:41 +000011 export std_config
Richard Smith31cfef02014-05-21 00:33:49 +000012 // FIXME: The standard does not require that each of these submodules
13 // re-exports its imported modules. We should provide an alternative form of
14 // export that issues a warning if a name from the submodule is used, and
15 // use that to provide a 'strict mode' for libc++.
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000016
17 // Deprecated C-compatibility headers. These can all be included from within
18 // an 'extern "C"' context.
19 module depr [extern_c] {
20 // <assert.h> provided by C library.
21 module ctype_h {
22 header "ctype.h"
23 export *
24 }
25 module errno_h {
26 header "errno.h"
27 export *
28 }
Eric Fiselier5dddf722019-02-11 23:47:19 +000029 module fenv_h {
30 header "fenv.h"
31 export *
32 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000033 // <float.h> provided by compiler or C library.
34 module inttypes_h {
35 header "inttypes.h"
36 export stdint_h
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000037 export *
38 }
39 // <iso646.h> provided by compiler.
40 // <limits.h> provided by compiler or C library.
Eric Fiselierc6213332016-11-19 01:14:15 +000041 module locale_h {
42 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 Dionne68d0bcd2022-05-12 14:43:20 -040054 requires cplusplus23
Louis Dionnebb5d1512022-04-11 10:42:45 -040055 header "stdatomic.h"
56 export *
57 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000058 // FIXME: <stdalign.h> is missing.
59 // <signal.h> provided by C library.
60 // <stdarg.h> provided by compiler.
Eric Fiselier5163fa12016-12-06 09:48:32 +000061 // <stdbool.h> provided by compiler.
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000062 module stddef_h {
63 // <stddef.h>'s __need_* macros require textual inclusion.
64 textual header "stddef.h"
65 }
Eric Fiseliercbda4fb2016-11-22 20:05:19 +000066 module stdint_h {
67 header "stdint.h"
68 export *
69 // FIXME: This module only exists on OS X and for some reason the
70 // wildcard above doesn't export it.
71 export Darwin.C.stdint
72 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000073 module stdio_h {
74 // <stdio.h>'s __need_* macros require textual inclusion.
75 textual header "stdio.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000076 export *
Eric Fiselier3b733092016-12-06 07:40:46 +000077 export Darwin.C.stdio
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000078 }
79 module stdlib_h {
80 // <stdlib.h>'s __need_* macros require textual inclusion.
81 textual header "stdlib.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000082 export *
83 }
84 module string_h {
85 header "string.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000086 export *
87 }
Louis Dionne789dd242022-02-03 15:42:40 -050088 module uchar_h {
89 header "uchar.h"
90 export *
91 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000092 // <time.h> provided by C library.
93 module wchar_h {
94 // <wchar.h>'s __need_* macros require textual inclusion.
95 textual header "wchar.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +000096 export *
97 }
98 module wctype_h {
99 header "wctype.h"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000100 export *
101 }
102 }
103
104 // <complex.h> and <tgmath.h> are not C headers in any real sense, do not
105 // allow their use in extern "C" contexts.
106 module complex_h {
107 header "complex.h"
108 export ccomplex
109 export *
110 }
111 module tgmath_h {
112 header "tgmath.h"
113 export ccomplex
114 export cmath
115 export *
116 }
117
118 // C compatibility headers.
119 module compat {
120 module cassert {
121 // <cassert>'s use of NDEBUG requires textual inclusion.
122 textual header "cassert"
123 }
124 module ccomplex {
125 header "ccomplex"
126 export complex
127 export *
128 }
129 module cctype {
130 header "cctype"
131 export *
132 }
133 module cerrno {
134 header "cerrno"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000135 export *
136 }
137 module cfenv {
138 header "cfenv"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000139 export *
140 }
141 module cfloat {
142 header "cfloat"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000143 export *
144 }
145 module cinttypes {
146 header "cinttypes"
147 export cstdint
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000148 export *
149 }
150 module ciso646 {
151 header "ciso646"
152 export *
153 }
154 module climits {
155 header "climits"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000156 export *
157 }
158 module clocale {
159 header "clocale"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000160 export *
161 }
162 module cmath {
163 header "cmath"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000164 export *
165 }
166 module csetjmp {
167 header "csetjmp"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000168 export *
169 }
170 module csignal {
171 header "csignal"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000172 export *
173 }
174 // FIXME: <cstdalign> is missing.
175 module cstdarg {
176 header "cstdarg"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000177 export *
178 }
179 module cstdbool {
180 header "cstdbool"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000181 export *
182 }
183 module cstddef {
184 header "cstddef"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000185 export *
186 }
187 module cstdint {
188 header "cstdint"
Eric Fiseliercbda4fb2016-11-22 20:05:19 +0000189 export depr.stdint_h
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000190 export *
191 }
192 module cstdio {
193 header "cstdio"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000194 export *
195 }
196 module cstdlib {
197 header "cstdlib"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000198 export *
199 }
200 module cstring {
201 header "cstring"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000202 export *
203 }
204 module ctgmath {
205 header "ctgmath"
206 export ccomplex
207 export cmath
208 export *
209 }
210 module ctime {
211 header "ctime"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000212 export *
213 }
Louis Dionne789dd242022-02-03 15:42:40 -0500214 module cuchar {
215 header "cuchar"
216 export *
217 }
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000218 module cwchar {
219 header "cwchar"
Eric Fiselier3b733092016-12-06 07:40:46 +0000220 export depr.stdio_h
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000221 export *
222 }
223 module cwctype {
224 header "cwctype"
Bruno Cardoso Lopes7fd29e02016-10-21 03:14:27 +0000225 export *
226 }
227 }
228
Richard Smith31cfef02014-05-21 00:33:49 +0000229 module algorithm {
230 header "algorithm"
231 export initializer_list
232 export *
Louis Dionnea60dd872021-06-17 11:30:11 -0400233
234 module __algorithm {
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000235 module adjacent_find { private header "__algorithm/adjacent_find.h" }
236 module all_of { private header "__algorithm/all_of.h" }
237 module any_of { private header "__algorithm/any_of.h" }
238 module binary_search { private header "__algorithm/binary_search.h" }
239 module clamp { private header "__algorithm/clamp.h" }
240 module comp { private header "__algorithm/comp.h" }
241 module comp_ref_type { private header "__algorithm/comp_ref_type.h" }
242 module copy { private header "__algorithm/copy.h" }
243 module copy_backward { private header "__algorithm/copy_backward.h" }
244 module copy_if { private header "__algorithm/copy_if.h" }
245 module copy_n { private header "__algorithm/copy_n.h" }
246 module count { private header "__algorithm/count.h" }
247 module count_if { private header "__algorithm/count_if.h" }
248 module equal { private header "__algorithm/equal.h" }
249 module equal_range { private header "__algorithm/equal_range.h" }
250 module fill { private header "__algorithm/fill.h" }
251 module fill_n { private header "__algorithm/fill_n.h" }
252 module find { private header "__algorithm/find.h" }
253 module find_end { private header "__algorithm/find_end.h" }
254 module find_first_of { private header "__algorithm/find_first_of.h" }
255 module find_if { private header "__algorithm/find_if.h" }
256 module find_if_not { private header "__algorithm/find_if_not.h" }
257 module for_each { private header "__algorithm/for_each.h" }
258 module for_each_n { private header "__algorithm/for_each_n.h" }
259 module generate { private header "__algorithm/generate.h" }
260 module generate_n { private header "__algorithm/generate_n.h" }
261 module half_positive { private header "__algorithm/half_positive.h" }
Nikolas Klauserdd5ad212022-02-21 23:07:02 +0100262 module in_found_result { private header "__algorithm/in_found_result.h" }
Nikolas Klauser671b4752022-02-11 17:01:58 +0100263 module in_fun_result { private header "__algorithm/in_fun_result.h" }
Nikolas Klauser05e2cd82022-01-25 11:21:47 +0100264 module in_in_out_result { private header "__algorithm/in_in_out_result.h" }
Nikolas Klauserf74be4e2022-01-14 02:55:51 +0100265 module in_in_result { private header "__algorithm/in_in_result.h" }
Nikolas Klauser61ce8162022-02-03 02:17:03 +0100266 module in_out_out_result { private header "__algorithm/in_out_out_result.h" }
Konstantin Varlamov74736812022-01-10 22:49:37 -0800267 module in_out_result { private header "__algorithm/in_out_result.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000268 module includes { private header "__algorithm/includes.h" }
269 module inplace_merge { private header "__algorithm/inplace_merge.h" }
270 module is_heap { private header "__algorithm/is_heap.h" }
271 module is_heap_until { private header "__algorithm/is_heap_until.h" }
272 module is_partitioned { private header "__algorithm/is_partitioned.h" }
273 module is_permutation { private header "__algorithm/is_permutation.h" }
274 module is_sorted { private header "__algorithm/is_sorted.h" }
275 module is_sorted_until { private header "__algorithm/is_sorted_until.h" }
276 module iter_swap { private header "__algorithm/iter_swap.h" }
277 module lexicographical_compare { private header "__algorithm/lexicographical_compare.h" }
278 module lower_bound { private header "__algorithm/lower_bound.h" }
279 module make_heap { private header "__algorithm/make_heap.h" }
280 module max { private header "__algorithm/max.h" }
281 module max_element { private header "__algorithm/max_element.h" }
282 module merge { private header "__algorithm/merge.h" }
283 module min { private header "__algorithm/min.h" }
284 module min_element { private header "__algorithm/min_element.h" }
Nikolas Klauser2e263162022-02-21 22:48:36 +0100285 module min_max_result { private header "__algorithm/min_max_result.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000286 module minmax { private header "__algorithm/minmax.h" }
287 module minmax_element { private header "__algorithm/minmax_element.h" }
288 module mismatch { private header "__algorithm/mismatch.h" }
289 module move { private header "__algorithm/move.h" }
290 module move_backward { private header "__algorithm/move_backward.h" }
291 module next_permutation { private header "__algorithm/next_permutation.h" }
292 module none_of { private header "__algorithm/none_of.h" }
293 module nth_element { private header "__algorithm/nth_element.h" }
294 module partial_sort { private header "__algorithm/partial_sort.h" }
295 module partial_sort_copy { private header "__algorithm/partial_sort_copy.h" }
296 module partition { private header "__algorithm/partition.h" }
297 module partition_copy { private header "__algorithm/partition_copy.h" }
298 module partition_point { private header "__algorithm/partition_point.h" }
299 module pop_heap { private header "__algorithm/pop_heap.h" }
300 module prev_permutation { private header "__algorithm/prev_permutation.h" }
301 module push_heap { private header "__algorithm/push_heap.h" }
Nikolas Klauserd959d842022-04-15 13:43:40 +0200302 module ranges_copy { private header "__algorithm/ranges_copy.h" }
303 module ranges_copy_backward { private header "__algorithm/ranges_copy_backward.h" }
304 module ranges_copy_if { private header "__algorithm/ranges_copy_if.h" }
305 module ranges_copy_n { private header "__algorithm/ranges_copy_n.h" }
Nikolas Klauserf1373d02022-04-07 13:02:02 +0200306 module ranges_count { private header "__algorithm/ranges_count.h" }
307 module ranges_count_if { private header "__algorithm/ranges_count_if.h" }
Nikolas Klauser37d076e2022-03-12 01:45:35 +0100308 module ranges_find { private header "__algorithm/ranges_find.h" }
309 module ranges_find_if { private header "__algorithm/ranges_find_if.h" }
310 module ranges_find_if_not { private header "__algorithm/ranges_find_if_not.h" }
Nikolas Klauser58de98c2022-05-04 20:27:07 +0200311 module ranges_for_each { private header "__algorithm/ranges_for_each.h" }
312 module ranges_for_each_n { private header "__algorithm/ranges_for_each_n.h" }
Nikolas Klauserbb9049d2022-05-04 14:19:09 +0200313 module ranges_is_partitioned { private header "__algorithm/ranges_is_partitioned.h" }
Nikolas Klauser573cd6f2022-04-03 09:17:01 +0200314 module ranges_max { private header "__algorithm/ranges_max.h" }
Nikolas Klauserf2a69ea2022-03-07 17:01:52 +0100315 module ranges_max_element { private header "__algorithm/ranges_max_element.h" }
Nikolas Klauser3559e452022-03-18 02:57:08 +0100316 module ranges_min { private header "__algorithm/ranges_min.h" }
Nikolas Klauser0a62a172022-02-11 13:11:57 +0100317 module ranges_min_element { private header "__algorithm/ranges_min_element.h" }
Nikolas Klauser0a2f44f2022-04-13 22:59:09 +0200318 module ranges_minmax { private header "__algorithm/ranges_minmax.h" }
319 module ranges_minmax_element { private header "__algorithm/ranges_minmax_element.h" }
Nikolas Klauser12fc9bf2022-03-08 23:12:35 +0100320 module ranges_mismatch { private header "__algorithm/ranges_mismatch.h" }
Nikolas Klauser4ceab5f2022-02-10 13:33:03 +0100321 module ranges_swap_ranges { private header "__algorithm/ranges_swap_ranges.h" }
Nikolas Klauser559a1772022-04-05 11:05:36 +0200322 module ranges_transform { private header "__algorithm/ranges_transform.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000323 module remove { private header "__algorithm/remove.h" }
324 module remove_copy { private header "__algorithm/remove_copy.h" }
325 module remove_copy_if { private header "__algorithm/remove_copy_if.h" }
326 module remove_if { private header "__algorithm/remove_if.h" }
327 module replace { private header "__algorithm/replace.h" }
328 module replace_copy { private header "__algorithm/replace_copy.h" }
329 module replace_copy_if { private header "__algorithm/replace_copy_if.h" }
330 module replace_if { private header "__algorithm/replace_if.h" }
331 module reverse { private header "__algorithm/reverse.h" }
332 module reverse_copy { private header "__algorithm/reverse_copy.h" }
333 module rotate { private header "__algorithm/rotate.h" }
334 module rotate_copy { private header "__algorithm/rotate_copy.h" }
335 module sample { private header "__algorithm/sample.h" }
336 module search { private header "__algorithm/search.h" }
337 module search_n { private header "__algorithm/search_n.h" }
338 module set_difference { private header "__algorithm/set_difference.h" }
339 module set_intersection { private header "__algorithm/set_intersection.h" }
340 module set_symmetric_difference { private header "__algorithm/set_symmetric_difference.h" }
341 module set_union { private header "__algorithm/set_union.h" }
342 module shift_left { private header "__algorithm/shift_left.h" }
343 module shift_right { private header "__algorithm/shift_right.h" }
344 module shuffle { private header "__algorithm/shuffle.h" }
345 module sift_down { private header "__algorithm/sift_down.h" }
346 module sort { private header "__algorithm/sort.h" }
347 module sort_heap { private header "__algorithm/sort_heap.h" }
348 module stable_partition { private header "__algorithm/stable_partition.h" }
349 module stable_sort { private header "__algorithm/stable_sort.h" }
350 module swap_ranges { private header "__algorithm/swap_ranges.h" }
351 module transform { private header "__algorithm/transform.h" }
352 module unique { private header "__algorithm/unique.h" }
353 module unique_copy { private header "__algorithm/unique_copy.h" }
354 module unwrap_iter { private header "__algorithm/unwrap_iter.h" }
355 module upper_bound { private header "__algorithm/upper_bound.h" }
Louis Dionnea60dd872021-06-17 11:30:11 -0400356 }
Richard Smith31cfef02014-05-21 00:33:49 +0000357 }
Eric Fiselier006458b2016-12-05 23:33:19 +0000358 module any {
359 header "any"
360 export *
361 }
Richard Smith31cfef02014-05-21 00:33:49 +0000362 module array {
363 header "array"
364 export initializer_list
365 export *
366 }
367 module atomic {
368 header "atomic"
369 export *
Richard Smith31cfef02014-05-21 00:33:49 +0000370 }
Olivier Giroux161e6e82020-02-18 09:58:34 -0500371 module barrier {
Raphael Isemann95e3ba22020-02-24 20:20:54 +0100372 requires cplusplus14
Olivier Giroux161e6e82020-02-18 09:58:34 -0500373 header "barrier"
374 export *
375 }
Marshall Clowbf32ec92018-08-17 16:07:48 +0000376 module bit {
377 header "bit"
378 export *
Louis Dionne1462d4d2020-05-28 14:28:38 -0400379
380 module __bit {
381 module bit_cast { private header "__bit/bit_cast.h" }
Nikolas Klauserb52cfd92021-11-22 00:22:55 +0100382 module byteswap { private header "__bit/byteswap.h" }
Louis Dionne1462d4d2020-05-28 14:28:38 -0400383 }
Marshall Clowbf32ec92018-08-17 16:07:48 +0000384 }
Richard Smith31cfef02014-05-21 00:33:49 +0000385 module bitset {
386 header "bitset"
387 export string
388 export iosfwd
389 export *
390 }
391 // No submodule for cassert. It fundamentally needs repeated, textual inclusion.
Zhihao Yuan7bf19052018-08-01 02:38:30 +0000392 module charconv {
393 header "charconv"
394 export *
Mark de Weverfd2375f2021-08-30 19:47:55 +0200395
396 module __charconv {
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500397 module chars_format { private header "__charconv/chars_format.h" }
Mark de Weverfd2375f2021-08-30 19:47:55 +0200398 module from_chars_result { private header "__charconv/from_chars_result.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500399 module to_chars_result { private header "__charconv/to_chars_result.h" }
Mark de Weverfd2375f2021-08-30 19:47:55 +0200400 }
401
Zhihao Yuan7bf19052018-08-01 02:38:30 +0000402 }
Richard Smith31cfef02014-05-21 00:33:49 +0000403 module chrono {
404 header "chrono"
405 export *
Louis Dionne9c2a32052022-01-10 14:56:43 -0500406
407 module __chrono {
408 module calendar { private header "__chrono/calendar.h" }
Louis Dionnecaf26832022-01-10 09:43:29 -0500409 module convert_to_timespec { private header "__chrono/convert_to_timespec.h" }
Mark de Weverde856382022-04-03 15:58:57 +0200410 module day { private header "__chrono/day.h" }
Louis Dionne9c2a32052022-01-10 14:56:43 -0500411 module duration { private header "__chrono/duration.h" }
412 module file_clock { private header "__chrono/file_clock.h" }
Mark de Weverde856382022-04-03 15:58:57 +0200413 module hh_mm_ss { private header "__chrono/hh_mm_ss.h" }
Louis Dionne9c2a32052022-01-10 14:56:43 -0500414 module high_resolution_clock { private header "__chrono/high_resolution_clock.h" }
Mark de Weverde856382022-04-03 15:58:57 +0200415 module literals { private header "__chrono/literals.h" }
416 module month { private header "__chrono/month.h" }
417 module month_weekday { private header "__chrono/month_weekday.h" }
418 module monthday { private header "__chrono/monthday.h" }
Louis Dionne9c2a32052022-01-10 14:56:43 -0500419 module steady_clock { private header "__chrono/steady_clock.h" }
420 module system_clock { private header "__chrono/system_clock.h" }
421 module time_point { private header "__chrono/time_point.h" }
Mark de Weverde856382022-04-03 15:58:57 +0200422 module weekday { private header "__chrono/weekday.h" }
423 module year { private header "__chrono/year.h" }
424 module year_month { private header "__chrono/year_month.h" }
425 module year_month_day { private header "__chrono/year_month_day.h" }
426 module year_month_weekday { private header "__chrono/year_month_weekday.h" }
Louis Dionne9c2a32052022-01-10 14:56:43 -0500427 }
Richard Smith31cfef02014-05-21 00:33:49 +0000428 }
Richard Smith31cfef02014-05-21 00:33:49 +0000429 module codecvt {
430 header "codecvt"
431 export *
432 }
Eric Fiseliere0074fc2018-04-06 21:37:23 +0000433 module compare {
434 header "compare"
435 export *
Ruslan Arutyunyan1babff32021-07-28 22:05:46 -0400436
437 module __compare {
Arthur O'Dwyer0679d2d2021-09-08 16:48:50 -0400438 module common_comparison_category { private header "__compare/common_comparison_category.h" }
439 module compare_partial_order_fallback { private header "__compare/compare_partial_order_fallback.h" }
440 module compare_strong_order_fallback { private header "__compare/compare_strong_order_fallback.h" }
441 module compare_three_way { private header "__compare/compare_three_way.h" }
442 module compare_three_way_result { private header "__compare/compare_three_way_result.h" }
443 module compare_weak_order_fallback { private header "__compare/compare_weak_order_fallback.h" }
444 module is_eq { private header "__compare/is_eq.h" }
445 module ordering { private header "__compare/ordering.h" }
446 module partial_order { private header "__compare/partial_order.h" }
447 module strong_order { private header "__compare/strong_order.h" }
448 module synth_three_way { private header "__compare/synth_three_way.h" }
449 module three_way_comparable { private header "__compare/three_way_comparable.h" }
450 module weak_order { private header "__compare/weak_order.h" }
Ruslan Arutyunyan1babff32021-07-28 22:05:46 -0400451 }
Eric Fiseliere0074fc2018-04-06 21:37:23 +0000452 }
Richard Smith31cfef02014-05-21 00:33:49 +0000453 module complex {
454 header "complex"
455 export *
456 }
Eric Fiselierd59a0322020-04-08 18:00:13 -0400457 module concepts {
458 header "concepts"
459 export *
Arthur O'Dwyerf72c4772021-07-29 01:08:30 -0400460
461 module __concepts {
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500462 module arithmetic { private header "__concepts/arithmetic.h" }
463 module assignable { private header "__concepts/assignable.h" }
464 module boolean_testable { private header "__concepts/boolean_testable.h" }
465 module class_or_enum { private header "__concepts/class_or_enum.h" }
466 module common_reference_with { private header "__concepts/common_reference_with.h" }
467 module common_with { private header "__concepts/common_with.h" }
468 module constructible { private header "__concepts/constructible.h" }
469 module convertible_to { private header "__concepts/convertible_to.h" }
470 module copyable { private header "__concepts/copyable.h" }
471 module derived_from { private header "__concepts/derived_from.h" }
472 module destructible { private header "__concepts/destructible.h" }
473 module different_from { private header "__concepts/different_from.h" }
474 module equality_comparable { private header "__concepts/equality_comparable.h" }
475 module invocable { private header "__concepts/invocable.h" }
476 module movable { private header "__concepts/movable.h" }
477 module predicate { private header "__concepts/predicate.h" }
478 module regular { private header "__concepts/regular.h" }
479 module relation { private header "__concepts/relation.h" }
480 module same_as { private header "__concepts/same_as.h" }
481 module semiregular { private header "__concepts/semiregular.h" }
482 module swappable { private header "__concepts/swappable.h" }
483 module totally_ordered { private header "__concepts/totally_ordered.h" }
Arthur O'Dwyerf72c4772021-07-29 01:08:30 -0400484 }
Eric Fiselierd59a0322020-04-08 18:00:13 -0400485 }
Richard Smith31cfef02014-05-21 00:33:49 +0000486 module condition_variable {
487 header "condition_variable"
488 export *
489 }
Chuanqi Xu6fdf6192021-11-16 14:05:34 +0800490 module coroutine {
491 requires coroutines
492 header "coroutine"
493 export compare
494 export *
495
496 module __coroutine {
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500497 module coroutine_handle { private header "__coroutine/coroutine_handle.h" }
498 module coroutine_traits { private header "__coroutine/coroutine_traits.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500499 module noop_coroutine_handle { private header "__coroutine/noop_coroutine_handle.h" }
Arthur O'Dwyer93488582022-01-10 13:23:19 -0500500 module trivial_awaitables { private header "__coroutine/trivial_awaitables.h" }
Chuanqi Xu6fdf6192021-11-16 14:05:34 +0800501 }
502 }
Richard Smith31cfef02014-05-21 00:33:49 +0000503 module deque {
504 header "deque"
505 export initializer_list
506 export *
507 }
508 module exception {
509 header "exception"
510 export *
511 }
Louis Dionne59d0b3c2019-08-05 18:29:14 +0000512 module execution {
513 header "execution"
514 export *
515 }
Eric Fiselier02cea5e2018-07-27 03:07:09 +0000516 module filesystem {
517 header "filesystem"
518 export *
Nikolas Klauser70bc0962021-12-18 10:21:25 +0100519
520 module __filesystem {
521 module copy_options { private header "__filesystem/copy_options.h" }
522 module directory_entry { private header "__filesystem/directory_entry.h" }
523 module directory_iterator { private header "__filesystem/directory_iterator.h" }
524 module directory_options { private header "__filesystem/directory_options.h" }
525 module file_status { private header "__filesystem/file_status.h" }
526 module file_time_type { private header "__filesystem/file_time_type.h" }
527 module file_type { private header "__filesystem/file_type.h" }
528 module filesystem_error { private header "__filesystem/filesystem_error.h" }
529 module operations { private header "__filesystem/operations.h" }
Nikolas Klauser70bc0962021-12-18 10:21:25 +0100530 module path { private header "__filesystem/path.h" }
Arthur O'Dwyer93488582022-01-10 13:23:19 -0500531 module path_iterator { private header "__filesystem/path_iterator.h" }
Nikolas Klauser70bc0962021-12-18 10:21:25 +0100532 module perm_options { private header "__filesystem/perm_options.h" }
533 module perms { private header "__filesystem/perms.h" }
534 module recursive_directory_iterator { private header "__filesystem/recursive_directory_iterator.h" }
535 module space_info { private header "__filesystem/space_info.h" }
536 module u8path { private header "__filesystem/u8path.h" }
537 }
Eric Fiselier02cea5e2018-07-27 03:07:09 +0000538 }
Mark de Weverdf5fd832020-11-26 19:12:18 +0100539 module format {
540 header "format"
541 export *
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +0000542
543 module __format {
Mark de Wever0f50bed2021-09-04 21:05:23 +0200544 module buffer { private header "__format/buffer.h" }
Mark de Wever3de390a2022-01-30 16:08:19 +0100545 module concepts { private header "__format/concepts.h" }
Mark de Weverdf3e0d42021-09-26 15:47:42 +0200546 module enable_insertable { private header "__format/enable_insertable.h" }
Mark de Wever4a5de742020-12-14 17:39:15 +0100547 module format_arg { private header "__format/format_arg.h" }
Mark de Wever69c96c62021-10-03 13:11:53 +0200548 module format_arg_store { private header "__format/format_arg_store.h" }
Mark de Wever4a5de742020-12-14 17:39:15 +0100549 module format_args { private header "__format/format_args.h" }
Mark de Wevercba61372020-12-05 11:45:21 +0100550 module format_context {
551 private header "__format/format_context.h"
552 export optional
553 export locale
554 }
Mark de Wever4a5de742020-12-14 17:39:15 +0100555 module format_error { private header "__format/format_error.h" }
556 module format_fwd { private header "__format/format_fwd.h" }
557 module format_parse_context { private header "__format/format_parse_context.h" }
558 module format_string { private header "__format/format_string.h" }
559 module format_to_n_result { private header "__format/format_to_n_result.h" }
560 module formatter { private header "__format/formatter.h" }
561 module formatter_bool { private header "__format/formatter_bool.h" }
562 module formatter_char { private header "__format/formatter_char.h" }
563 module formatter_floating_point { private header "__format/formatter_floating_point.h" }
564 module formatter_integer { private header "__format/formatter_integer.h" }
565 module formatter_integral { private header "__format/formatter_integral.h" }
Mark de Wever43642712021-11-28 14:43:43 +0100566 module formatter_pointer { private header "__format/formatter_pointer.h" }
Mark de Wever4a5de742020-12-14 17:39:15 +0100567 module formatter_string { private header "__format/formatter_string.h" }
568 module parser_std_format_spec { private header "__format/parser_std_format_spec.h" }
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +0000569 }
Mark de Weverdf5fd832020-11-26 19:12:18 +0100570 }
Richard Smith31cfef02014-05-21 00:33:49 +0000571 module forward_list {
572 header "forward_list"
573 export initializer_list
574 export *
575 }
576 module fstream {
577 header "fstream"
578 export *
579 }
580 module functional {
581 header "functional"
582 export *
Christopher Di Bella55d7a822021-07-01 09:25:35 -0400583
Louis Dionnea60dd872021-06-17 11:30:11 -0400584 module __functional {
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000585 module binary_function { private header "__functional/binary_function.h" }
586 module binary_negate { private header "__functional/binary_negate.h" }
587 module bind { private header "__functional/bind.h" }
Louis Dionne067e22b2021-08-09 15:41:26 -0400588 module bind_back { private header "__functional/bind_back.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000589 module bind_front { private header "__functional/bind_front.h" }
590 module binder1st { private header "__functional/binder1st.h" }
591 module binder2nd { private header "__functional/binder2nd.h" }
Louis Dionne067e22b2021-08-09 15:41:26 -0400592 module compose { private header "__functional/compose.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000593 module default_searcher { private header "__functional/default_searcher.h" }
594 module function { private header "__functional/function.h" }
595 module hash { private header "__functional/hash.h" }
596 module identity { private header "__functional/identity.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000597 module invoke { private header "__functional/invoke.h" }
Louis Dionne067e22b2021-08-09 15:41:26 -0400598 module is_transparent { private header "__functional/is_transparent.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500599 module mem_fn { private header "__functional/mem_fn.h" }
600 module mem_fun_ref { private header "__functional/mem_fun_ref.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000601 module not_fn { private header "__functional/not_fn.h" }
602 module operations { private header "__functional/operations.h" }
603 module perfect_forward { private header "__functional/perfect_forward.h" }
604 module pointer_to_binary_function { private header "__functional/pointer_to_binary_function.h" }
605 module pointer_to_unary_function { private header "__functional/pointer_to_unary_function.h" }
606 module ranges_operations { private header "__functional/ranges_operations.h" }
607 module reference_wrapper { private header "__functional/reference_wrapper.h" }
608 module unary_function { private header "__functional/unary_function.h" }
609 module unary_negate { private header "__functional/unary_negate.h" }
610 module unwrap_ref { private header "__functional/unwrap_ref.h" }
611 module weak_result_type { private header "__functional/weak_result_type.h" }
Louis Dionnea60dd872021-06-17 11:30:11 -0400612 }
Richard Smith31cfef02014-05-21 00:33:49 +0000613 }
614 module future {
615 header "future"
616 export *
617 }
618 module initializer_list {
619 header "initializer_list"
620 export *
621 }
622 module iomanip {
623 header "iomanip"
624 export *
625 }
626 module ios {
627 header "ios"
628 export iosfwd
629 export *
Nikolas Klauser80840272022-02-04 13:04:33 +0100630
631 module __ios {
632 module fpos { private header "__ios/fpos.h" }
633 }
Richard Smith31cfef02014-05-21 00:33:49 +0000634 }
635 module iosfwd {
636 header "iosfwd"
637 export *
638 }
639 module iostream {
640 header "iostream"
641 export ios
642 export streambuf
643 export istream
644 export ostream
645 export *
646 }
647 module istream {
648 header "istream"
649 // FIXME: should re-export ios, streambuf?
650 export *
651 }
652 module iterator {
653 header "iterator"
654 export *
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +0000655
656 module __iterator {
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000657 module access { private header "__iterator/access.h" }
Arthur O'Dwyer8c3f9fd2022-01-03 20:28:00 -0500658 module advance { private header "__iterator/advance.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000659 module back_insert_iterator { private header "__iterator/back_insert_iterator.h" }
zoecarver6eb71a92021-05-27 09:23:19 -0700660 module common_iterator { private header "__iterator/common_iterator.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000661 module concepts { private header "__iterator/concepts.h" }
zoecarverd3aca592021-07-13 11:06:10 -0700662 module counted_iterator { private header "__iterator/counted_iterator.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000663 module data { private header "__iterator/data.h" }
664 module default_sentinel { private header "__iterator/default_sentinel.h" }
665 module distance { private header "__iterator/distance.h" }
666 module empty { private header "__iterator/empty.h" }
667 module erase_if_container { private header "__iterator/erase_if_container.h" }
668 module front_insert_iterator { private header "__iterator/front_insert_iterator.h" }
669 module incrementable_traits { private header "__iterator/incrementable_traits.h" }
Nikolas Klauser764ac5e2022-01-04 19:55:37 +0100670 module indirectly_comparable { private header "__iterator/indirectly_comparable.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000671 module insert_iterator { private header "__iterator/insert_iterator.h" }
672 module istream_iterator { private header "__iterator/istream_iterator.h" }
673 module istreambuf_iterator { private header "__iterator/istreambuf_iterator.h" }
674 module iter_move { private header "__iterator/iter_move.h" }
675 module iter_swap { private header "__iterator/iter_swap.h" }
676 module iterator { private header "__iterator/iterator.h" }
677 module iterator_traits { private header "__iterator/iterator_traits.h" }
Konstantin Varlamov73b5c162022-02-17 20:11:46 -0800678 module mergeable { private header "__iterator/mergeable.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000679 module move_iterator { private header "__iterator/move_iterator.h" }
Arthur O'Dwyer6b240aa2022-01-19 06:26:52 -0500680 module move_sentinel { private header "__iterator/move_sentinel.h" }
Arthur O'Dwyer8c3f9fd2022-01-03 20:28:00 -0500681 module next { private header "__iterator/next.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000682 module ostream_iterator { private header "__iterator/ostream_iterator.h" }
Louis Dionnedc9836e2022-04-03 12:40:39 -0400683 module ostreambuf_iterator {
684 private header "__iterator/ostreambuf_iterator.h"
685 export iosfwd
686 }
Konstantin Varlamovea9734e2022-02-09 20:32:56 -0800687 module permutable { private header "__iterator/permutable.h" }
Arthur O'Dwyer8c3f9fd2022-01-03 20:28:00 -0500688 module prev { private header "__iterator/prev.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000689 module projected { private header "__iterator/projected.h" }
690 module readable_traits { private header "__iterator/readable_traits.h" }
691 module reverse_access { private header "__iterator/reverse_access.h" }
692 module reverse_iterator { private header "__iterator/reverse_iterator.h" }
693 module size { private header "__iterator/size.h" }
Konstantin Varlamov1755e8d2022-02-17 20:15:02 -0800694 module sortable { private header "__iterator/sortable.h" }
zoecarver23001f72021-08-11 11:16:27 -0700695 module unreachable_sentinel { private header "__iterator/unreachable_sentinel.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000696 module wrap_iter { private header "__iterator/wrap_iter.h" }
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +0000697 }
Richard Smith31cfef02014-05-21 00:33:49 +0000698 }
Olivier Giroux161e6e82020-02-18 09:58:34 -0500699 module latch {
Raphael Isemann95e3ba22020-02-24 20:20:54 +0100700 requires cplusplus14
Olivier Giroux161e6e82020-02-18 09:58:34 -0500701 header "latch"
702 export *
703 }
Richard Smith31cfef02014-05-21 00:33:49 +0000704 module limits {
705 header "limits"
706 export *
707 }
708 module list {
709 header "list"
710 export initializer_list
711 export *
712 }
713 module locale {
714 header "locale"
715 export *
716 }
717 module map {
718 header "map"
719 export initializer_list
720 export *
721 }
722 module memory {
723 header "memory"
724 export *
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +0000725
726 module __memory {
Konstantin Varlamov145c5df2021-12-14 14:11:37 -0800727 module addressof { private header "__memory/addressof.h" }
Nikolas Klauserc513eba2022-04-09 09:41:19 +0200728 module allocate_at_least { private header "__memory/allocate_at_least.h" }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -0800729 module allocation_guard { private header "__memory/allocation_guard.h" }
730 module allocator { private header "__memory/allocator.h" }
731 module allocator_arg_t { private header "__memory/allocator_arg_t.h" }
732 module allocator_traits { private header "__memory/allocator_traits.h" }
Louis Dionne28e2f6c2022-02-03 14:45:22 -0500733 module assume_aligned { private header "__memory/assume_aligned.h" }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -0800734 module auto_ptr { private header "__memory/auto_ptr.h" }
735 module compressed_pair { private header "__memory/compressed_pair.h" }
736 module concepts { private header "__memory/concepts.h" }
737 module construct_at { private header "__memory/construct_at.h" }
738 module pointer_traits { private header "__memory/pointer_traits.h" }
Arthur O'Dwyer8c3f9fd2022-01-03 20:28:00 -0500739 module ranges_construct_at { private header "__memory/ranges_construct_at.h" }
740 module ranges_uninitialized_algorithms { private header "__memory/ranges_uninitialized_algorithms.h" }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -0800741 module raw_storage_iterator { private header "__memory/raw_storage_iterator.h" }
742 module shared_ptr { private header "__memory/shared_ptr.h" }
743 module temporary_buffer { private header "__memory/temporary_buffer.h" }
744 module uninitialized_algorithms { private header "__memory/uninitialized_algorithms.h" }
745 module unique_ptr { private header "__memory/unique_ptr.h" }
746 module uses_allocator { private header "__memory/uses_allocator.h" }
Konstantin Varlamov139228a2021-12-20 00:24:10 -0800747 module voidify { private header "__memory/voidify.h" }
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +0000748 }
Richard Smith31cfef02014-05-21 00:33:49 +0000749 }
750 module mutex {
751 header "mutex"
752 export *
753 }
754 module new {
755 header "new"
756 export *
757 }
Raul Tambreafcedea2020-06-19 12:43:33 +0530758 module numbers {
759 header "numbers"
760 export *
761 }
Richard Smith31cfef02014-05-21 00:33:49 +0000762 module numeric {
763 header "numeric"
764 export *
Christopher Di Bella0df29b32021-12-01 01:36:32 +0000765
766 module __numeric {
767 module accumulate { private header "__numeric/accumulate.h" }
768 module adjacent_difference { private header "__numeric/adjacent_difference.h" }
769 module exclusive_scan { private header "__numeric/exclusive_scan.h" }
770 module gcd_lcm { private header "__numeric/gcd_lcm.h" }
771 module inclusive_scan { private header "__numeric/inclusive_scan.h" }
772 module inner_product { private header "__numeric/inner_product.h" }
773 module iota { private header "__numeric/iota.h" }
774 module midpoint { private header "__numeric/midpoint.h" }
775 module partial_sum { private header "__numeric/partial_sum.h" }
776 module reduce { private header "__numeric/reduce.h" }
777 module transform_exclusive_scan { private header "__numeric/transform_exclusive_scan.h" }
778 module transform_inclusive_scan { private header "__numeric/transform_inclusive_scan.h" }
779 module transform_reduce { private header "__numeric/transform_reduce.h" }
780 }
Richard Smith31cfef02014-05-21 00:33:49 +0000781 }
Eric Fiselier006458b2016-12-05 23:33:19 +0000782 module optional {
783 header "optional"
784 export *
785 }
Richard Smith31cfef02014-05-21 00:33:49 +0000786 module ostream {
787 header "ostream"
788 // FIXME: should re-export ios, streambuf?
789 export *
790 }
791 module queue {
792 header "queue"
793 export initializer_list
794 export *
795 }
796 module random {
797 header "random"
798 export initializer_list
799 export *
Louis Dionnea60dd872021-06-17 11:30:11 -0400800
801 module __random {
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500802 module bernoulli_distribution { private header "__random/bernoulli_distribution.h" }
803 module binomial_distribution { private header "__random/binomial_distribution.h" }
804 module cauchy_distribution { private header "__random/cauchy_distribution.h" }
805 module chi_squared_distribution { private header "__random/chi_squared_distribution.h" }
Louis Dionneafbc3312021-12-07 16:34:13 -0500806 module clamp_to_integral { private header "__random/clamp_to_integral.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500807 module default_random_engine { private header "__random/default_random_engine.h" }
808 module discard_block_engine { private header "__random/discard_block_engine.h" }
809 module discrete_distribution { private header "__random/discrete_distribution.h" }
810 module exponential_distribution { private header "__random/exponential_distribution.h" }
811 module extreme_value_distribution { private header "__random/extreme_value_distribution.h" }
812 module fisher_f_distribution { private header "__random/fisher_f_distribution.h" }
813 module gamma_distribution { private header "__random/gamma_distribution.h" }
814 module generate_canonical { private header "__random/generate_canonical.h" }
815 module geometric_distribution { private header "__random/geometric_distribution.h" }
816 module independent_bits_engine { private header "__random/independent_bits_engine.h" }
817 module is_seed_sequence { private header "__random/is_seed_sequence.h" }
Arthur O'Dwyer681dcb82021-12-01 19:55:26 -0500818 module is_valid { private header "__random/is_valid.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500819 module knuth_b { private header "__random/knuth_b.h" }
820 module linear_congruential_engine { private header "__random/linear_congruential_engine.h" }
821 module log2 { private header "__random/log2.h" }
822 module lognormal_distribution { private header "__random/lognormal_distribution.h" }
823 module mersenne_twister_engine { private header "__random/mersenne_twister_engine.h" }
824 module negative_binomial_distribution { private header "__random/negative_binomial_distribution.h" }
825 module normal_distribution { private header "__random/normal_distribution.h" }
Arthur O'Dwyerc3a73732021-11-19 14:58:51 -0500826 module piecewise_constant_distribution { private header "__random/piecewise_constant_distribution.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500827 module piecewise_linear_distribution { private header "__random/piecewise_linear_distribution.h" }
828 module poisson_distribution { private header "__random/poisson_distribution.h" }
829 module random_device { private header "__random/random_device.h" }
830 module ranlux { private header "__random/ranlux.h" }
831 module seed_seq { private header "__random/seed_seq.h" }
832 module shuffle_order_engine { private header "__random/shuffle_order_engine.h" }
833 module student_t_distribution { private header "__random/student_t_distribution.h" }
834 module subtract_with_carry_engine { private header "__random/subtract_with_carry_engine.h" }
835 module uniform_int_distribution { private header "__random/uniform_int_distribution.h" }
836 module uniform_random_bit_generator { private header "__random/uniform_random_bit_generator.h" }
837 module uniform_real_distribution { private header "__random/uniform_real_distribution.h" }
838 module weibull_distribution { private header "__random/weibull_distribution.h" }
Louis Dionnea60dd872021-06-17 11:30:11 -0400839 }
Richard Smith31cfef02014-05-21 00:33:49 +0000840 }
Mark de Weveraf59b2d2020-11-24 18:08:02 +0100841 module ranges {
842 header "ranges"
Christopher Di Bella66ce1292021-04-11 05:08:32 +0000843 export compare
844 export initializer_list
845 export iterator
Mark de Weveraf59b2d2020-11-24 18:08:02 +0100846 export *
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +0000847
848 module __ranges {
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500849 module access { private header "__ranges/access.h" }
Louis Dionne8c2023c2021-08-11 17:36:35 -0400850 module all {
851 private header "__ranges/all.h"
852 export functional.__functional.compose
853 export functional.__functional.perfect_forward
854 }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500855 module common_view { private header "__ranges/common_view.h" }
856 module concepts { private header "__ranges/concepts.h" }
857 module copyable_box { private header "__ranges/copyable_box.h" }
Konstantin Varlamov145c5df2021-12-14 14:11:37 -0800858 module counted {
859 private header "__ranges/counted.h"
860 export span
861 }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500862 module dangling { private header "__ranges/dangling.h" }
863 module data { private header "__ranges/data.h" }
864 module drop_view { private header "__ranges/drop_view.h" }
865 module empty { private header "__ranges/empty.h" }
866 module empty_view { private header "__ranges/empty_view.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +0000867 module enable_borrowed_range { private header "__ranges/enable_borrowed_range.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500868 module enable_view { private header "__ranges/enable_view.h" }
Louis Dionne5082abe2021-07-14 17:01:25 -0400869 module filter_view { private header "__ranges/filter_view.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500870 module iota_view { private header "__ranges/iota_view.h" }
871 module join_view { private header "__ranges/join_view.h" }
Konstantin Varlamova48cd202022-04-12 22:27:07 -0700872 module lazy_split_view { private header "__ranges/lazy_split_view.h" }
Louis Dionneb64bcf92021-07-19 12:12:49 -0400873 module non_propagating_cache { private header "__ranges/non_propagating_cache.h" }
Arthur O'Dwyerf7078ac2022-01-09 09:00:35 -0500874 module owning_view { private header "__ranges/owning_view.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500875 module range_adaptor { private header "__ranges/range_adaptor.h" }
Konstantin Varlamove9cdcbc2022-02-14 03:29:18 -0800876 module rbegin { private header "__ranges/rbegin.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500877 module ref_view { private header "__ranges/ref_view.h" }
Konstantin Varlamove9cdcbc2022-02-14 03:29:18 -0800878 module rend { private header "__ranges/rend.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500879 module reverse_view { private header "__ranges/reverse_view.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500880 module single_view { private header "__ranges/single_view.h" }
Arthur O'Dwyer93488582022-01-10 13:23:19 -0500881 module size { private header "__ranges/size.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500882 module subrange { private header "__ranges/subrange.h" }
883 module take_view { private header "__ranges/take_view.h" }
Louis Dionne8c2023c2021-08-11 17:36:35 -0400884 module transform_view {
885 private header "__ranges/transform_view.h"
886 export functional.__functional.bind_back
887 export functional.__functional.perfect_forward
888 }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -0500889 module view_interface { private header "__ranges/view_interface.h" }
Arthur O'Dwyerd0264b12022-02-02 12:23:51 -0500890 module views { private header "__ranges/views.h" }
Hui Xieb77c4c22022-04-25 12:18:54 +0200891 module zip_view { private header "__ranges/zip_view.h" }
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +0000892 }
Mark de Weveraf59b2d2020-11-24 18:08:02 +0100893 }
Richard Smith31cfef02014-05-21 00:33:49 +0000894 module ratio {
895 header "ratio"
896 export *
897 }
898 module regex {
899 header "regex"
900 export initializer_list
901 export *
902 }
903 module scoped_allocator {
904 header "scoped_allocator"
905 export *
906 }
Olivier Giroux161e6e82020-02-18 09:58:34 -0500907 module semaphore {
Raphael Isemann95e3ba22020-02-24 20:20:54 +0100908 requires cplusplus14
Olivier Giroux161e6e82020-02-18 09:58:34 -0500909 header "semaphore"
910 export *
911 }
Richard Smith31cfef02014-05-21 00:33:49 +0000912 module set {
913 header "set"
914 export initializer_list
915 export *
916 }
Christopher Di Bellaa75331d2021-07-15 06:41:17 +0000917 module shared_mutex {
918 header "shared_mutex"
919 export version
920 }
921 module span {
922 header "span"
923 export ranges.__ranges.enable_borrowed_range
924 export version
Konstantin Varlamov3d7c2e92022-05-06 13:33:33 -0700925 module span_fwd { private header "__fwd/span.h" }
Christopher Di Bellaa75331d2021-07-15 06:41:17 +0000926 }
Richard Smith31cfef02014-05-21 00:33:49 +0000927 module sstream {
928 header "sstream"
929 // FIXME: should re-export istream, ostream, ios, streambuf, string?
930 export *
931 }
932 module stack {
933 header "stack"
934 export initializer_list
935 export *
936 }
937 module stdexcept {
938 header "stdexcept"
939 export *
940 }
941 module streambuf {
942 header "streambuf"
943 export *
944 }
945 module string {
946 header "string"
947 export initializer_list
Eric Fiselier2d357f72016-12-05 23:53:23 +0000948 export string_view
949 export __string
950 export *
951 }
952 module string_view {
953 header "string_view"
954 export initializer_list
955 export __string
Richard Smith31cfef02014-05-21 00:33:49 +0000956 export *
Konstantin Varlamov3d7c2e92022-05-06 13:33:33 -0700957 module string_view_fwd { private header "__fwd/string_view.h" }
Richard Smith31cfef02014-05-21 00:33:49 +0000958 }
959 module strstream {
960 header "strstream"
Eric Fiselierbdc20862016-12-05 23:16:07 +0000961 export *
Richard Smith31cfef02014-05-21 00:33:49 +0000962 }
963 module system_error {
964 header "system_error"
965 export *
966 }
967 module thread {
968 header "thread"
969 export *
Louis Dionneaf2d2a82021-11-17 10:59:31 -0500970
971 module __thread {
Louis Dionnecaf26832022-01-10 09:43:29 -0500972 module poll_with_backoff { private header "__thread/poll_with_backoff.h" }
973 module timed_backoff_policy { private header "__thread/timed_backoff_policy.h" }
Louis Dionneaf2d2a82021-11-17 10:59:31 -0500974 }
Richard Smith31cfef02014-05-21 00:33:49 +0000975 }
976 module tuple {
977 header "tuple"
978 export *
979 }
980 module type_traits {
981 header "type_traits"
Christopher Di Bella599a6c62021-06-09 23:10:17 +0000982 export functional.__functional.unwrap_ref
Richard Smith31cfef02014-05-21 00:33:49 +0000983 export *
Nikolas Klauser5c440172022-04-07 13:40:53 +0200984
985 module integral_constant { private header "__type_traits/integral_constant.h" }
986 module is_callable { private header "__type_traits/is_callable.h" }
Richard Smith31cfef02014-05-21 00:33:49 +0000987 }
988 module typeindex {
989 header "typeindex"
990 export *
991 }
992 module typeinfo {
993 header "typeinfo"
994 export *
995 }
996 module unordered_map {
997 header "unordered_map"
998 export initializer_list
999 export *
1000 }
1001 module unordered_set {
1002 header "unordered_set"
1003 export initializer_list
1004 export *
1005 }
1006 module utility {
1007 header "utility"
1008 export initializer_list
1009 export *
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +00001010
1011 module __utility {
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001012 module as_const { private header "__utility/as_const.h" }
Arthur O'Dwyer423e14b2021-12-13 19:21:38 -05001013 module auto_cast { private header "__utility/auto_cast.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001014 module cmp { private header "__utility/cmp.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001015 module declval { private header "__utility/declval.h" }
1016 module exchange { private header "__utility/exchange.h" }
1017 module forward { private header "__utility/forward.h" }
1018 module in_place { private header "__utility/in_place.h" }
1019 module integer_sequence { private header "__utility/integer_sequence.h" }
1020 module move { private header "__utility/move.h" }
1021 module pair { private header "__utility/pair.h" }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001022 module piecewise_construct { private header "__utility/piecewise_construct.h" }
Arthur O'Dwyer89cb8d82021-12-05 18:56:58 -05001023 module priority_tag { private header "__utility/priority_tag.h" }
1024 module rel_ops { private header "__utility/rel_ops.h" }
1025 module swap { private header "__utility/swap.h" }
1026 module to_underlying { private header "__utility/to_underlying.h" }
Louis Dionned9db4982021-12-14 10:18:19 -05001027 module transaction { private header "__utility/transaction.h" }
Nikolas Klausercfe21472022-02-14 18:26:02 +01001028 module unreachable { private header "__utility/unreachable.h" }
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +00001029 }
Richard Smith31cfef02014-05-21 00:33:49 +00001030 }
1031 module valarray {
1032 header "valarray"
1033 export initializer_list
1034 export *
1035 }
Eric Fiselier006458b2016-12-05 23:33:19 +00001036 module variant {
1037 header "variant"
1038 export *
Mark de Wever3b269752021-07-07 21:27:27 +02001039
1040 module __variant {
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001041 module monostate { private header "__variant/monostate.h" }
Mark de Wever3b269752021-07-07 21:27:27 +02001042 }
Eric Fiselier006458b2016-12-05 23:33:19 +00001043 }
Richard Smith31cfef02014-05-21 00:33:49 +00001044 module vector {
1045 header "vector"
1046 export initializer_list
1047 export *
1048 }
Eric Fiseliera604a7d2018-04-04 04:21:54 +00001049 module version {
1050 header "version"
1051 export *
1052 }
Richard Smith31cfef02014-05-21 00:33:49 +00001053
Christopher Di Bella02fbd4e2021-06-12 06:13:44 +00001054 // __config not modularised due to a bug in Clang
Richard Smith31cfef02014-05-21 00:33:49 +00001055 // FIXME: These should be private.
Louis Dionne9bdbeb32022-02-14 13:41:09 -05001056 module __assert { header "__assert" export * }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001057 module __availability { private header "__availability" export * }
1058 module __bit_reference { private header "__bit_reference" export * }
1059 module __bits { private header "__bits" export * }
Arthur O'Dwyer33f2e932021-12-05 13:21:01 -05001060 module __debug { header "__debug" export * }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001061 module __errc { private header "__errc" export * }
Arthur O'Dwyer33f2e932021-12-05 13:21:01 -05001062 module __hash_table { header "__hash_table" export * }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001063 module __locale { private header "__locale" export * }
Arthur O'Dwyer3f635112022-01-16 14:56:42 -05001064 module __mbstate_t { private header "__mbstate_t.h" export * }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001065 module __mutex_base { private header "__mutex_base" export * }
1066 module __node_handle { private header "__node_handle" export * }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001067 module __split_buffer { private header "__split_buffer" export * }
1068 module __std_stream { private header "__std_stream" export * }
1069 module __string { private header "__string" export * }
Arthur O'Dwyer33f2e932021-12-05 13:21:01 -05001070 module __threading_support { header "__threading_support" export * }
1071 module __tree { header "__tree" export * }
Christopher Di Bella60fc6602021-07-13 19:44:07 +00001072 module __tuple { private header "__tuple" export * }
Arthur O'Dwyer33f2e932021-12-05 13:21:01 -05001073 module __undef_macros { header "__undef_macros" export * }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001074
1075 module experimental {
Eric Fiselier92ae1af2016-12-06 01:34:24 +00001076 requires cplusplus11
1077
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001078 module algorithm {
1079 header "experimental/algorithm"
1080 export *
1081 }
Arthur O'Dwyer26a92be2022-03-01 14:25:09 -05001082 module coroutine {
Eric Fiseliere4a3dab2017-05-29 23:17:28 +00001083 requires coroutines
Eric Fiselierf0426152017-05-25 23:39:29 +00001084 header "experimental/coroutine"
1085 export *
1086 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001087 module deque {
1088 header "experimental/deque"
1089 export *
1090 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001091 module forward_list {
1092 header "experimental/forward_list"
1093 export *
1094 }
1095 module functional {
1096 header "experimental/functional"
1097 export *
1098 }
1099 module iterator {
1100 header "experimental/iterator"
1101 export *
1102 }
1103 module list {
1104 header "experimental/list"
1105 export *
1106 }
1107 module map {
1108 header "experimental/map"
1109 export *
1110 }
1111 module memory_resource {
1112 header "experimental/memory_resource"
1113 export *
1114 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001115 module propagate_const {
1116 header "experimental/propagate_const"
1117 export *
1118 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001119 module regex {
1120 header "experimental/regex"
1121 export *
1122 }
Tim Shen158e51b2018-04-23 21:54:06 +00001123 module simd {
1124 header "experimental/simd"
1125 export *
1126 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001127 module set {
1128 header "experimental/set"
1129 export *
1130 }
Marshall Clowd2ad87e2018-07-24 03:01:02 +00001131 module span {
1132 header "span"
1133 export *
1134 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001135 module string {
1136 header "experimental/string"
1137 export *
1138 }
Eric Fiselierb5b9e822016-12-05 23:55:34 +00001139 module type_traits {
1140 header "experimental/type_traits"
1141 export *
1142 }
1143 module unordered_map {
1144 header "experimental/unordered_map"
1145 export *
1146 }
1147 module unordered_set {
1148 header "experimental/unordered_set"
1149 export *
1150 }
1151 module utility {
1152 header "experimental/utility"
1153 export *
1154 }
1155 module vector {
1156 header "experimental/vector"
1157 export *
1158 }
1159 // FIXME these should be private
1160 module __memory {
1161 header "experimental/__memory"
1162 export *
1163 }
1164 } // end experimental
Richard Smith31cfef02014-05-21 00:33:49 +00001165}