Eric Fiselier | 62b959c | 2016-12-08 06:37:41 +0000 | [diff] [blame] | 1 | // 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. |
| 4 | module std_config [system] [extern_c] { |
| 5 | header "__config" |
| 6 | } |
| 7 | |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 8 | module std [system] { |
Eric Fiselier | 62b959c | 2016-12-08 06:37:41 +0000 | [diff] [blame] | 9 | export std_config |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 10 | // FIXME: The standard does not require that each of these submodules |
| 11 | // re-exports its imported modules. We should provide an alternative form of |
| 12 | // export that issues a warning if a name from the submodule is used, and |
| 13 | // use that to provide a 'strict mode' for libc++. |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 14 | |
| 15 | // Deprecated C-compatibility headers. These can all be included from within |
| 16 | // an 'extern "C"' context. |
| 17 | module depr [extern_c] { |
| 18 | // <assert.h> provided by C library. |
| 19 | module ctype_h { |
| 20 | header "ctype.h" |
| 21 | export * |
| 22 | } |
| 23 | module errno_h { |
| 24 | header "errno.h" |
| 25 | export * |
| 26 | } |
Eric Fiselier | 5dddf72 | 2019-02-11 23:47:19 +0000 | [diff] [blame] | 27 | module fenv_h { |
| 28 | header "fenv.h" |
| 29 | export * |
| 30 | } |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 31 | // <float.h> provided by compiler or C library. |
| 32 | module inttypes_h { |
| 33 | header "inttypes.h" |
| 34 | export stdint_h |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 35 | export * |
| 36 | } |
| 37 | // <iso646.h> provided by compiler. |
| 38 | // <limits.h> provided by compiler or C library. |
Eric Fiselier | c621333 | 2016-11-19 01:14:15 +0000 | [diff] [blame] | 39 | module locale_h { |
| 40 | header "locale.h" |
Eric Fiselier | c621333 | 2016-11-19 01:14:15 +0000 | [diff] [blame] | 41 | export * |
| 42 | } |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 43 | module math_h { |
| 44 | header "math.h" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 45 | export * |
| 46 | } |
| 47 | module setjmp_h { |
| 48 | header "setjmp.h" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 49 | export * |
| 50 | } |
| 51 | // FIXME: <stdalign.h> is missing. |
| 52 | // <signal.h> provided by C library. |
| 53 | // <stdarg.h> provided by compiler. |
Eric Fiselier | 5163fa1 | 2016-12-06 09:48:32 +0000 | [diff] [blame] | 54 | // <stdbool.h> provided by compiler. |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 55 | module stddef_h { |
| 56 | // <stddef.h>'s __need_* macros require textual inclusion. |
| 57 | textual header "stddef.h" |
| 58 | } |
Eric Fiselier | cbda4fb | 2016-11-22 20:05:19 +0000 | [diff] [blame] | 59 | module stdint_h { |
| 60 | header "stdint.h" |
| 61 | export * |
| 62 | // FIXME: This module only exists on OS X and for some reason the |
| 63 | // wildcard above doesn't export it. |
| 64 | export Darwin.C.stdint |
| 65 | } |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 66 | module stdio_h { |
| 67 | // <stdio.h>'s __need_* macros require textual inclusion. |
| 68 | textual header "stdio.h" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 69 | export * |
Eric Fiselier | 3b73309 | 2016-12-06 07:40:46 +0000 | [diff] [blame] | 70 | export Darwin.C.stdio |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 71 | } |
| 72 | module stdlib_h { |
| 73 | // <stdlib.h>'s __need_* macros require textual inclusion. |
| 74 | textual header "stdlib.h" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 75 | export * |
| 76 | } |
| 77 | module string_h { |
| 78 | header "string.h" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 79 | export * |
| 80 | } |
| 81 | // FIXME: <uchar.h> is missing. |
| 82 | // <time.h> provided by C library. |
| 83 | module wchar_h { |
| 84 | // <wchar.h>'s __need_* macros require textual inclusion. |
| 85 | textual header "wchar.h" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 86 | export * |
| 87 | } |
| 88 | module wctype_h { |
| 89 | header "wctype.h" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 90 | export * |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | // <complex.h> and <tgmath.h> are not C headers in any real sense, do not |
| 95 | // allow their use in extern "C" contexts. |
| 96 | module complex_h { |
| 97 | header "complex.h" |
| 98 | export ccomplex |
| 99 | export * |
| 100 | } |
| 101 | module tgmath_h { |
| 102 | header "tgmath.h" |
| 103 | export ccomplex |
| 104 | export cmath |
| 105 | export * |
| 106 | } |
| 107 | |
| 108 | // C compatibility headers. |
| 109 | module compat { |
| 110 | module cassert { |
| 111 | // <cassert>'s use of NDEBUG requires textual inclusion. |
| 112 | textual header "cassert" |
| 113 | } |
| 114 | module ccomplex { |
| 115 | header "ccomplex" |
| 116 | export complex |
| 117 | export * |
| 118 | } |
| 119 | module cctype { |
| 120 | header "cctype" |
| 121 | export * |
| 122 | } |
| 123 | module cerrno { |
| 124 | header "cerrno" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 125 | export * |
| 126 | } |
| 127 | module cfenv { |
| 128 | header "cfenv" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 129 | export * |
| 130 | } |
| 131 | module cfloat { |
| 132 | header "cfloat" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 133 | export * |
| 134 | } |
| 135 | module cinttypes { |
| 136 | header "cinttypes" |
| 137 | export cstdint |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 138 | export * |
| 139 | } |
| 140 | module ciso646 { |
| 141 | header "ciso646" |
| 142 | export * |
| 143 | } |
| 144 | module climits { |
| 145 | header "climits" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 146 | export * |
| 147 | } |
| 148 | module clocale { |
| 149 | header "clocale" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 150 | export * |
| 151 | } |
| 152 | module cmath { |
| 153 | header "cmath" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 154 | export * |
| 155 | } |
| 156 | module csetjmp { |
| 157 | header "csetjmp" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 158 | export * |
| 159 | } |
| 160 | module csignal { |
| 161 | header "csignal" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 162 | export * |
| 163 | } |
| 164 | // FIXME: <cstdalign> is missing. |
| 165 | module cstdarg { |
| 166 | header "cstdarg" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 167 | export * |
| 168 | } |
| 169 | module cstdbool { |
| 170 | header "cstdbool" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 171 | export * |
| 172 | } |
| 173 | module cstddef { |
| 174 | header "cstddef" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 175 | export * |
| 176 | } |
| 177 | module cstdint { |
| 178 | header "cstdint" |
Eric Fiselier | cbda4fb | 2016-11-22 20:05:19 +0000 | [diff] [blame] | 179 | export depr.stdint_h |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 180 | export * |
| 181 | } |
| 182 | module cstdio { |
| 183 | header "cstdio" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 184 | export * |
| 185 | } |
| 186 | module cstdlib { |
| 187 | header "cstdlib" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 188 | export * |
| 189 | } |
| 190 | module cstring { |
| 191 | header "cstring" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 192 | export * |
| 193 | } |
| 194 | module ctgmath { |
| 195 | header "ctgmath" |
| 196 | export ccomplex |
| 197 | export cmath |
| 198 | export * |
| 199 | } |
| 200 | module ctime { |
| 201 | header "ctime" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 202 | export * |
| 203 | } |
| 204 | // FIXME: <cuchar> is missing. |
| 205 | module cwchar { |
| 206 | header "cwchar" |
Eric Fiselier | 3b73309 | 2016-12-06 07:40:46 +0000 | [diff] [blame] | 207 | export depr.stdio_h |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 208 | export * |
| 209 | } |
| 210 | module cwctype { |
| 211 | header "cwctype" |
Bruno Cardoso Lopes | 7fd29e0 | 2016-10-21 03:14:27 +0000 | [diff] [blame] | 212 | export * |
| 213 | } |
| 214 | } |
| 215 | |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 216 | module algorithm { |
| 217 | header "algorithm" |
| 218 | export initializer_list |
| 219 | export * |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 220 | |
| 221 | module __algorithm { |
| 222 | module adjacent_find { header "__algorithm/adjacent_find.h" } |
| 223 | module all_of { header "__algorithm/all_of.h" } |
| 224 | module any_of { header "__algorithm/any_of.h" } |
| 225 | module binary_search { header "__algorithm/binary_search.h" } |
| 226 | module clamp { header "__algorithm/clamp.h" } |
| 227 | module comp { header "__algorithm/comp.h" } |
| 228 | module comp_ref_type { header "__algorithm/comp_ref_type.h" } |
| 229 | module copy { header "__algorithm/copy.h" } |
| 230 | module copy_backward { header "__algorithm/copy_backward.h" } |
| 231 | module copy_if { header "__algorithm/copy_if.h" } |
| 232 | module copy_n { header "__algorithm/copy_n.h" } |
| 233 | module count { header "__algorithm/count.h" } |
| 234 | module count_if { header "__algorithm/count_if.h" } |
| 235 | module equal { header "__algorithm/equal.h" } |
| 236 | module equal_range { header "__algorithm/equal_range.h" } |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 237 | module fill { header "__algorithm/fill.h" } |
Louis Dionne | 611b72f | 2021-07-05 09:25:15 -0400 | [diff] [blame] | 238 | module fill_n { header "__algorithm/fill_n.h" } |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 239 | module find { header "__algorithm/find.h" } |
| 240 | module find_end { header "__algorithm/find_end.h" } |
| 241 | module find_first_of { header "__algorithm/find_first_of.h" } |
| 242 | module find_if { header "__algorithm/find_if.h" } |
| 243 | module find_if_not { header "__algorithm/find_if_not.h" } |
| 244 | module for_each { header "__algorithm/for_each.h" } |
| 245 | module for_each_n { header "__algorithm/for_each_n.h" } |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 246 | module generate { header "__algorithm/generate.h" } |
Louis Dionne | 611b72f | 2021-07-05 09:25:15 -0400 | [diff] [blame] | 247 | module generate_n { header "__algorithm/generate_n.h" } |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 248 | module half_positive { header "__algorithm/half_positive.h" } |
| 249 | module includes { header "__algorithm/includes.h" } |
| 250 | module inplace_merge { header "__algorithm/inplace_merge.h" } |
| 251 | module is_heap { header "__algorithm/is_heap.h" } |
| 252 | module is_heap_until { header "__algorithm/is_heap_until.h" } |
| 253 | module is_partitioned { header "__algorithm/is_partitioned.h" } |
| 254 | module is_permutation { header "__algorithm/is_permutation.h" } |
| 255 | module is_sorted { header "__algorithm/is_sorted.h" } |
| 256 | module is_sorted_until { header "__algorithm/is_sorted_until.h" } |
| 257 | module lexicographical_compare { header "__algorithm/lexicographical_compare.h" } |
| 258 | module lower_bound { header "__algorithm/lower_bound.h" } |
| 259 | module make_heap { header "__algorithm/make_heap.h" } |
| 260 | module max { header "__algorithm/max.h" } |
| 261 | module max_element { header "__algorithm/max_element.h" } |
| 262 | module merge { header "__algorithm/merge.h" } |
| 263 | module min { header "__algorithm/min.h" } |
| 264 | module min_element { header "__algorithm/min_element.h" } |
| 265 | module minmax { header "__algorithm/minmax.h" } |
| 266 | module minmax_element { header "__algorithm/minmax_element.h" } |
| 267 | module mismatch { header "__algorithm/mismatch.h" } |
| 268 | module move { header "__algorithm/move.h" } |
| 269 | module move_backward { header "__algorithm/move_backward.h" } |
| 270 | module next_permutation { header "__algorithm/next_permutation.h" } |
| 271 | module none_of { header "__algorithm/none_of.h" } |
| 272 | module nth_element { header "__algorithm/nth_element.h" } |
| 273 | module partial_sort { header "__algorithm/partial_sort.h" } |
| 274 | module partial_sort_copy { header "__algorithm/partial_sort_copy.h" } |
| 275 | module partition { header "__algorithm/partition.h" } |
| 276 | module partition_copy { header "__algorithm/partition_copy.h" } |
| 277 | module partition_point { header "__algorithm/partition_point.h" } |
| 278 | module pop_heap { header "__algorithm/pop_heap.h" } |
| 279 | module prev_permutation { header "__algorithm/prev_permutation.h" } |
| 280 | module push_heap { header "__algorithm/push_heap.h" } |
| 281 | module remove { header "__algorithm/remove.h" } |
| 282 | module remove_copy { header "__algorithm/remove_copy.h" } |
| 283 | module remove_copy_if { header "__algorithm/remove_copy_if.h" } |
| 284 | module remove_if { header "__algorithm/remove_if.h" } |
| 285 | module replace { header "__algorithm/replace.h" } |
| 286 | module replace_copy { header "__algorithm/replace_copy.h" } |
| 287 | module replace_copy_if { header "__algorithm/replace_copy_if.h" } |
| 288 | module replace_if { header "__algorithm/replace_if.h" } |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 289 | module reverse { header "__algorithm/reverse.h" } |
Louis Dionne | 611b72f | 2021-07-05 09:25:15 -0400 | [diff] [blame] | 290 | module reverse_copy { header "__algorithm/reverse_copy.h" } |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 291 | module rotate { header "__algorithm/rotate.h" } |
Louis Dionne | 611b72f | 2021-07-05 09:25:15 -0400 | [diff] [blame] | 292 | module rotate_copy { header "__algorithm/rotate_copy.h" } |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 293 | module sample { header "__algorithm/sample.h" } |
| 294 | module search { header "__algorithm/search.h" } |
| 295 | module search_n { header "__algorithm/search_n.h" } |
| 296 | module set_difference { header "__algorithm/set_difference.h" } |
| 297 | module set_intersection { header "__algorithm/set_intersection.h" } |
| 298 | module set_symmetric_difference { header "__algorithm/set_symmetric_difference.h" } |
| 299 | module set_union { header "__algorithm/set_union.h" } |
| 300 | module shift_left { header "__algorithm/shift_left.h" } |
| 301 | module shift_right { header "__algorithm/shift_right.h" } |
| 302 | module shuffle { header "__algorithm/shuffle.h" } |
| 303 | module sift_down { header "__algorithm/sift_down.h" } |
| 304 | module sort { header "__algorithm/sort.h" } |
| 305 | module sort_heap { header "__algorithm/sort_heap.h" } |
| 306 | module stable_partition { header "__algorithm/stable_partition.h" } |
| 307 | module stable_sort { header "__algorithm/stable_sort.h" } |
| 308 | module transform { header "__algorithm/transform.h" } |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 309 | module unique { header "__algorithm/unique.h" } |
Louis Dionne | 611b72f | 2021-07-05 09:25:15 -0400 | [diff] [blame] | 310 | module unique_copy { header "__algorithm/unique_copy.h" } |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 311 | module unwrap_iter { header "__algorithm/unwrap_iter.h" } |
| 312 | module upper_bound { header "__algorithm/upper_bound.h" } |
| 313 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 314 | } |
Eric Fiselier | 006458b | 2016-12-05 23:33:19 +0000 | [diff] [blame] | 315 | module any { |
| 316 | header "any" |
| 317 | export * |
| 318 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 319 | module array { |
| 320 | header "array" |
| 321 | export initializer_list |
| 322 | export * |
| 323 | } |
| 324 | module atomic { |
| 325 | header "atomic" |
| 326 | export * |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 327 | } |
Olivier Giroux | 161e6e8 | 2020-02-18 09:58:34 -0500 | [diff] [blame] | 328 | module barrier { |
Raphael Isemann | 95e3ba2 | 2020-02-24 20:20:54 +0100 | [diff] [blame] | 329 | requires cplusplus14 |
Olivier Giroux | 161e6e8 | 2020-02-18 09:58:34 -0500 | [diff] [blame] | 330 | header "barrier" |
| 331 | export * |
| 332 | } |
Marshall Clow | bf32ec9 | 2018-08-17 16:07:48 +0000 | [diff] [blame] | 333 | module bit { |
| 334 | header "bit" |
| 335 | export * |
| 336 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 337 | module bitset { |
| 338 | header "bitset" |
| 339 | export string |
| 340 | export iosfwd |
| 341 | export * |
| 342 | } |
| 343 | // No submodule for cassert. It fundamentally needs repeated, textual inclusion. |
Zhihao Yuan | 7bf1905 | 2018-08-01 02:38:30 +0000 | [diff] [blame] | 344 | module charconv { |
| 345 | header "charconv" |
| 346 | export * |
| 347 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 348 | module chrono { |
| 349 | header "chrono" |
| 350 | export * |
| 351 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 352 | module codecvt { |
| 353 | header "codecvt" |
| 354 | export * |
| 355 | } |
Eric Fiselier | e0074fc | 2018-04-06 21:37:23 +0000 | [diff] [blame] | 356 | module compare { |
| 357 | header "compare" |
| 358 | export * |
| 359 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 360 | module complex { |
| 361 | header "complex" |
| 362 | export * |
| 363 | } |
Eric Fiselier | d59a032 | 2020-04-08 18:00:13 -0400 | [diff] [blame] | 364 | module concepts { |
| 365 | header "concepts" |
| 366 | export * |
| 367 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 368 | module condition_variable { |
| 369 | header "condition_variable" |
| 370 | export * |
| 371 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 372 | module deque { |
| 373 | header "deque" |
| 374 | export initializer_list |
| 375 | export * |
| 376 | } |
| 377 | module exception { |
| 378 | header "exception" |
| 379 | export * |
| 380 | } |
Louis Dionne | 59d0b3c | 2019-08-05 18:29:14 +0000 | [diff] [blame] | 381 | module execution { |
| 382 | header "execution" |
| 383 | export * |
| 384 | } |
Eric Fiselier | 02cea5e | 2018-07-27 03:07:09 +0000 | [diff] [blame] | 385 | module filesystem { |
| 386 | header "filesystem" |
| 387 | export * |
| 388 | } |
Mark de Wever | df5fd83 | 2020-11-26 19:12:18 +0100 | [diff] [blame] | 389 | module format { |
| 390 | header "format" |
| 391 | export * |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 392 | |
| 393 | module __format { |
| 394 | module format_error { header "__format/format_error.h" } |
| 395 | module format_parse_context { header "__format/format_parse_context.h" } |
| 396 | } |
Mark de Wever | df5fd83 | 2020-11-26 19:12:18 +0100 | [diff] [blame] | 397 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 398 | module forward_list { |
| 399 | header "forward_list" |
| 400 | export initializer_list |
| 401 | export * |
| 402 | } |
| 403 | module fstream { |
| 404 | header "fstream" |
| 405 | export * |
| 406 | } |
| 407 | module functional { |
| 408 | header "functional" |
| 409 | export * |
Christopher Di Bella | 55d7a82 | 2021-07-01 09:25:35 -0400 | [diff] [blame] | 410 | |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 411 | module __functional { |
Christopher Di Bella | 55d7a82 | 2021-07-01 09:25:35 -0400 | [diff] [blame] | 412 | module binary_function { header "__functional/binary_function.h" } |
| 413 | module binary_negate { header "__functional/binary_negate.h" } |
| 414 | module bind { header "__functional/bind.h" } |
| 415 | module bind_front { header "__functional/bind_front.h" } |
| 416 | module binder1st { header "__functional/binder1st.h" } |
| 417 | module binder2nd { header "__functional/binder2nd.h" } |
| 418 | module default_searcher { header "__functional/default_searcher.h" } |
| 419 | module function { header "__functional/function.h" } |
| 420 | module hash { header "__functional/hash.h" } |
| 421 | module identity { header "__functional/identity.h" } |
| 422 | module invoke { header "__functional/invoke.h" } |
| 423 | module mem_fn { header "__functional/mem_fn.h" } |
| 424 | module mem_fun_ref { header "__functional/mem_fun_ref.h" } |
| 425 | module not_fn { header "__functional/not_fn.h" } |
| 426 | module operations { header "__functional/operations.h" } |
| 427 | module perfect_forward { header "__functional/perfect_forward.h" } |
| 428 | module pointer_to_binary_function { header "__functional/pointer_to_binary_function.h" } |
| 429 | module pointer_to_unary_function { header "__functional/pointer_to_unary_function.h" } |
| 430 | module ranges_operations { header "__functional/ranges_operations.h" } |
| 431 | module reference_wrapper { header "__functional/reference_wrapper.h" } |
| 432 | module unary_function { header "__functional/unary_function.h" } |
| 433 | module unary_negate { header "__functional/unary_negate.h" } |
| 434 | module unwrap_ref { header "__functional/unwrap_ref.h" } |
| 435 | module weak_result_type { header "__functional/weak_result_type.h" } |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 436 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 437 | } |
| 438 | module future { |
| 439 | header "future" |
| 440 | export * |
| 441 | } |
| 442 | module initializer_list { |
| 443 | header "initializer_list" |
| 444 | export * |
| 445 | } |
| 446 | module iomanip { |
| 447 | header "iomanip" |
| 448 | export * |
| 449 | } |
| 450 | module ios { |
| 451 | header "ios" |
| 452 | export iosfwd |
| 453 | export * |
| 454 | } |
| 455 | module iosfwd { |
| 456 | header "iosfwd" |
| 457 | export * |
| 458 | } |
| 459 | module iostream { |
| 460 | header "iostream" |
| 461 | export ios |
| 462 | export streambuf |
| 463 | export istream |
| 464 | export ostream |
| 465 | export * |
| 466 | } |
| 467 | module istream { |
| 468 | header "istream" |
| 469 | // FIXME: should re-export ios, streambuf? |
| 470 | export * |
| 471 | } |
| 472 | module iterator { |
| 473 | header "iterator" |
| 474 | export * |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 475 | |
| 476 | module __iterator { |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 477 | module access { header "__iterator/access.h" } |
| 478 | module advance { header "__iterator/advance.h" } |
| 479 | module back_insert_iterator { header "__iterator/back_insert_iterator.h" } |
| 480 | module concepts { header "__iterator/concepts.h" } |
| 481 | module data { header "__iterator/data.h" } |
| 482 | module default_sentinel { header "__iterator/default_sentinel.h" } |
| 483 | module distance { header "__iterator/distance.h" } |
| 484 | module empty { header "__iterator/empty.h" } |
| 485 | module erase_if_container { header "__iterator/erase_if_container.h" } |
| 486 | module front_insert_iterator { header "__iterator/front_insert_iterator.h" } |
| 487 | module incrementable_traits { header "__iterator/incrementable_traits.h" } |
| 488 | module insert_iterator { header "__iterator/insert_iterator.h" } |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 489 | module istream_iterator { header "__iterator/istream_iterator.h" } |
Louis Dionne | 2a52e42 | 2021-07-06 14:45:41 -0400 | [diff] [blame] | 490 | module istreambuf_iterator { header "__iterator/istreambuf_iterator.h" } |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 491 | module iter_move { header "__iterator/iter_move.h" } |
| 492 | module iter_swap { header "__iterator/iter_swap.h" } |
Louis Dionne | 2a52e42 | 2021-07-06 14:45:41 -0400 | [diff] [blame] | 493 | module iterator { header "__iterator/iterator.h" } |
| 494 | module iterator_traits { header "__iterator/iterator_traits.h" } |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 495 | module move_iterator { header "__iterator/move_iterator.h" } |
| 496 | module next { header "__iterator/next.h" } |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 497 | module ostream_iterator { header "__iterator/ostream_iterator.h" } |
Louis Dionne | 2a52e42 | 2021-07-06 14:45:41 -0400 | [diff] [blame] | 498 | module ostreambuf_iterator { header "__iterator/ostreambuf_iterator.h" } |
Christopher Di Bella | c7674cd | 2021-06-29 02:32:59 +0000 | [diff] [blame] | 499 | module prev { header "__iterator/prev.h" } |
| 500 | module projected { header "__iterator/projected.h" } |
| 501 | module readable_traits { header "__iterator/readable_traits.h" } |
| 502 | module reverse_access { header "__iterator/reverse_access.h" } |
| 503 | module reverse_iterator { header "__iterator/reverse_iterator.h" } |
| 504 | module size { header "__iterator/size.h" } |
| 505 | module wrap_iter { header "__iterator/wrap_iter.h" } |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 506 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 507 | } |
Olivier Giroux | 161e6e8 | 2020-02-18 09:58:34 -0500 | [diff] [blame] | 508 | module latch { |
Raphael Isemann | 95e3ba2 | 2020-02-24 20:20:54 +0100 | [diff] [blame] | 509 | requires cplusplus14 |
Olivier Giroux | 161e6e8 | 2020-02-18 09:58:34 -0500 | [diff] [blame] | 510 | header "latch" |
| 511 | export * |
| 512 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 513 | module limits { |
| 514 | header "limits" |
| 515 | export * |
| 516 | } |
| 517 | module list { |
| 518 | header "list" |
| 519 | export initializer_list |
| 520 | export * |
| 521 | } |
| 522 | module locale { |
| 523 | header "locale" |
| 524 | export * |
| 525 | } |
| 526 | module map { |
| 527 | header "map" |
| 528 | export initializer_list |
| 529 | export * |
| 530 | } |
| 531 | module memory { |
| 532 | header "memory" |
| 533 | export * |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 534 | |
| 535 | module __memory { |
| 536 | module addressof { header "__memory/addressof.h" } |
| 537 | module allocation_guard { header "__memory/allocation_guard.h" } |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 538 | module allocator { header "__memory/allocator.h" } |
Louis Dionne | 2a52e42 | 2021-07-06 14:45:41 -0400 | [diff] [blame] | 539 | module allocator_arg_t { header "__memory/allocator_arg_t.h" } |
| 540 | module allocator_traits { header "__memory/allocator_traits.h" } |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 541 | module auto_ptr { header "__memory/auto_ptr.h" } |
| 542 | module compressed_pair { header "__memory/compressed_pair.h" } |
| 543 | module construct_at { header "__memory/construct_at.h" } |
| 544 | module pointer_safety { header "__memory/pointer_safety.h" } |
| 545 | module pointer_traits { header "__memory/pointer_traits.h" } |
| 546 | module raw_storage_iterator { header "__memory/raw_storage_iterator.h" } |
| 547 | module shared_ptr { header "__memory/shared_ptr.h" } |
| 548 | module temporary_buffer { header "__memory/temporary_buffer.h" } |
| 549 | module uninitialized_algorithms { header "__memory/uninitialized_algorithms.h" } |
| 550 | module unique_ptr { header "__memory/unique_ptr.h" } |
| 551 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 552 | } |
| 553 | module mutex { |
| 554 | header "mutex" |
| 555 | export * |
| 556 | } |
| 557 | module new { |
| 558 | header "new" |
| 559 | export * |
| 560 | } |
Raul Tambre | afcedea | 2020-06-19 12:43:33 +0530 | [diff] [blame] | 561 | module numbers { |
| 562 | header "numbers" |
| 563 | export * |
| 564 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 565 | module numeric { |
| 566 | header "numeric" |
| 567 | export * |
| 568 | } |
Eric Fiselier | 006458b | 2016-12-05 23:33:19 +0000 | [diff] [blame] | 569 | module optional { |
| 570 | header "optional" |
| 571 | export * |
| 572 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 573 | module ostream { |
| 574 | header "ostream" |
| 575 | // FIXME: should re-export ios, streambuf? |
| 576 | export * |
| 577 | } |
| 578 | module queue { |
| 579 | header "queue" |
| 580 | export initializer_list |
| 581 | export * |
| 582 | } |
| 583 | module random { |
| 584 | header "random" |
| 585 | export initializer_list |
| 586 | export * |
Louis Dionne | a60dd87 | 2021-06-17 11:30:11 -0400 | [diff] [blame] | 587 | |
| 588 | module __random { |
| 589 | module uniform_int_distribution { header "__random/uniform_int_distribution.h" } |
| 590 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 591 | } |
Mark de Wever | af59b2d | 2020-11-24 18:08:02 +0100 | [diff] [blame] | 592 | module ranges { |
| 593 | header "ranges" |
Christopher Di Bella | 66ce129 | 2021-04-11 05:08:32 +0000 | [diff] [blame] | 594 | export compare |
| 595 | export initializer_list |
| 596 | export iterator |
Mark de Wever | af59b2d | 2020-11-24 18:08:02 +0100 | [diff] [blame] | 597 | export * |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 598 | |
| 599 | module __ranges { |
Christopher Di Bella | 8539fc6 | 2021-06-16 19:12:51 +0000 | [diff] [blame] | 600 | module access { header "__ranges/access.h" } |
Louis Dionne | c46ba71 | 2021-06-22 13:47:32 -0400 | [diff] [blame] | 601 | module all { header "__ranges/all.h" } |
Christopher Di Bella | 8539fc6 | 2021-06-16 19:12:51 +0000 | [diff] [blame] | 602 | module concepts { header "__ranges/concepts.h" } |
Louis Dionne | bcfbcf9 | 2021-06-24 13:29:35 -0400 | [diff] [blame] | 603 | module copyable_box { header "__ranges/copyable_box.h" } |
Christopher Di Bella | 8539fc6 | 2021-06-16 19:12:51 +0000 | [diff] [blame] | 604 | module data { header "__ranges/data.h" } |
| 605 | module empty { header "__ranges/empty.h" } |
| 606 | module empty_view { header "__ranges/empty_view.h" } |
| 607 | module enable_borrowed_range { header "__ranges/enable_borrowed_range.h" } |
| 608 | module enable_view { header "__ranges/enable_view.h" } |
| 609 | module ref_view { header "__ranges/ref_view.h" } |
| 610 | module size { header "__ranges/size.h" } |
| 611 | module subrange { header "__ranges/subrange.h" } |
| 612 | module view_interface { header "__ranges/view_interface.h" } |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 613 | } |
Mark de Wever | af59b2d | 2020-11-24 18:08:02 +0100 | [diff] [blame] | 614 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 615 | module ratio { |
| 616 | header "ratio" |
| 617 | export * |
| 618 | } |
| 619 | module regex { |
| 620 | header "regex" |
| 621 | export initializer_list |
| 622 | export * |
| 623 | } |
| 624 | module scoped_allocator { |
| 625 | header "scoped_allocator" |
| 626 | export * |
| 627 | } |
Olivier Giroux | 161e6e8 | 2020-02-18 09:58:34 -0500 | [diff] [blame] | 628 | module semaphore { |
Raphael Isemann | 95e3ba2 | 2020-02-24 20:20:54 +0100 | [diff] [blame] | 629 | requires cplusplus14 |
Olivier Giroux | 161e6e8 | 2020-02-18 09:58:34 -0500 | [diff] [blame] | 630 | header "semaphore" |
| 631 | export * |
| 632 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 633 | module set { |
| 634 | header "set" |
| 635 | export initializer_list |
| 636 | export * |
| 637 | } |
| 638 | module sstream { |
| 639 | header "sstream" |
| 640 | // FIXME: should re-export istream, ostream, ios, streambuf, string? |
| 641 | export * |
| 642 | } |
| 643 | module stack { |
| 644 | header "stack" |
| 645 | export initializer_list |
| 646 | export * |
| 647 | } |
| 648 | module stdexcept { |
| 649 | header "stdexcept" |
| 650 | export * |
| 651 | } |
| 652 | module streambuf { |
| 653 | header "streambuf" |
| 654 | export * |
| 655 | } |
| 656 | module string { |
| 657 | header "string" |
| 658 | export initializer_list |
Eric Fiselier | 2d357f7 | 2016-12-05 23:53:23 +0000 | [diff] [blame] | 659 | export string_view |
| 660 | export __string |
| 661 | export * |
| 662 | } |
| 663 | module string_view { |
| 664 | header "string_view" |
| 665 | export initializer_list |
| 666 | export __string |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 667 | export * |
| 668 | } |
| 669 | module strstream { |
| 670 | header "strstream" |
Eric Fiselier | bdc2086 | 2016-12-05 23:16:07 +0000 | [diff] [blame] | 671 | export * |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 672 | } |
| 673 | module system_error { |
| 674 | header "system_error" |
| 675 | export * |
| 676 | } |
| 677 | module thread { |
| 678 | header "thread" |
| 679 | export * |
| 680 | } |
| 681 | module tuple { |
| 682 | header "tuple" |
| 683 | export * |
| 684 | } |
| 685 | module type_traits { |
| 686 | header "type_traits" |
Christopher Di Bella | 599a6c6 | 2021-06-09 23:10:17 +0000 | [diff] [blame] | 687 | export functional.__functional.unwrap_ref |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 688 | export * |
| 689 | } |
| 690 | module typeindex { |
| 691 | header "typeindex" |
| 692 | export * |
| 693 | } |
| 694 | module typeinfo { |
| 695 | header "typeinfo" |
| 696 | export * |
| 697 | } |
| 698 | module unordered_map { |
| 699 | header "unordered_map" |
| 700 | export initializer_list |
| 701 | export * |
| 702 | } |
| 703 | module unordered_set { |
| 704 | header "unordered_set" |
| 705 | export initializer_list |
| 706 | export * |
| 707 | } |
| 708 | module utility { |
| 709 | header "utility" |
| 710 | export initializer_list |
| 711 | export * |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 712 | |
| 713 | module __utility { |
Christopher Di Bella | 599a6c6 | 2021-06-09 23:10:17 +0000 | [diff] [blame] | 714 | module __decay_copy { header "__utility/__decay_copy.h" } |
| 715 | module as_const { header "__utility/as_const.h" } |
| 716 | module cmp { header "__utility/cmp.h" } |
| 717 | module declval { header "__utility/declval.h" } |
| 718 | module exchange { header "__utility/exchange.h" } |
| 719 | module forward { header "__utility/forward.h" } |
| 720 | module in_place { header "__utility/in_place.h" } |
| 721 | module integer_sequence { header "__utility/integer_sequence.h" } |
| 722 | module move { header "__utility/move.h" } |
| 723 | module pair { header "__utility/pair.h" } |
| 724 | module piecewise_construct { header "__utility/piecewise_construct.h" } |
| 725 | module rel_ops { header "__utility/rel_ops.h" } |
| 726 | module swap { header "__utility/swap.h" } |
| 727 | module to_underlying { header "__utility/to_underlying.h" } |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 728 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 729 | } |
| 730 | module valarray { |
| 731 | header "valarray" |
| 732 | export initializer_list |
| 733 | export * |
| 734 | } |
Eric Fiselier | 006458b | 2016-12-05 23:33:19 +0000 | [diff] [blame] | 735 | module variant { |
| 736 | header "variant" |
| 737 | export * |
Mark de Wever | 3b26975 | 2021-07-07 21:27:27 +0200 | [diff] [blame^] | 738 | |
| 739 | module __variant { |
| 740 | module monostate { header "__variant/monostate.h" } |
| 741 | } |
Eric Fiselier | 006458b | 2016-12-05 23:33:19 +0000 | [diff] [blame] | 742 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 743 | module vector { |
| 744 | header "vector" |
| 745 | export initializer_list |
| 746 | export * |
| 747 | } |
Eric Fiselier | a604a7d | 2018-04-04 04:21:54 +0000 | [diff] [blame] | 748 | module version { |
| 749 | header "version" |
| 750 | export * |
| 751 | } |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 752 | |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 753 | // __config not modularised due to a bug in Clang |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 754 | // FIXME: These should be private. |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 755 | module __availability { header "__availability" export * } |
| 756 | module __bit_reference { header "__bit_reference" export * } |
| 757 | module __bits { header "__bits" export * } |
| 758 | module __debug { header "__debug" export * } |
| 759 | module __errc { header "__errc" export * } |
| 760 | module __function_like { header "__function_like.h" export * } |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 761 | module __hash_table { header "__hash_table" export * } |
| 762 | module __locale { header "__locale" export * } |
| 763 | module __mutex_base { header "__mutex_base" export * } |
| 764 | module __node_handle { header "__node_handle" export * } |
| 765 | module __nullptr { header "__nullptr" export * } |
| 766 | module __split_buffer { header "__split_buffer" export * } |
| 767 | module __std_stream { header "__std_stream" export * } |
| 768 | module __string { header "__string" export * } |
Petr Hosek | 5f4e91c | 2021-06-07 11:29:03 -0700 | [diff] [blame] | 769 | module __threading_support { header "__threading_support" export * } |
Christopher Di Bella | 02fbd4e | 2021-06-12 06:13:44 +0000 | [diff] [blame] | 770 | module __tree { header "__tree" export * } |
| 771 | module __tuple { header "__tuple" export * } |
| 772 | module __undef_macros { header "__undef_macros" export * } |
Eric Fiselier | b5b9e82 | 2016-12-05 23:55:34 +0000 | [diff] [blame] | 773 | |
| 774 | module experimental { |
Eric Fiselier | 92ae1af | 2016-12-06 01:34:24 +0000 | [diff] [blame] | 775 | requires cplusplus11 |
| 776 | |
Eric Fiselier | b5b9e82 | 2016-12-05 23:55:34 +0000 | [diff] [blame] | 777 | module algorithm { |
| 778 | header "experimental/algorithm" |
| 779 | export * |
| 780 | } |
Eric Fiselier | f042615 | 2017-05-25 23:39:29 +0000 | [diff] [blame] | 781 | module coroutine { |
Eric Fiselier | e4a3dab | 2017-05-29 23:17:28 +0000 | [diff] [blame] | 782 | requires coroutines |
Eric Fiselier | f042615 | 2017-05-25 23:39:29 +0000 | [diff] [blame] | 783 | header "experimental/coroutine" |
| 784 | export * |
| 785 | } |
Eric Fiselier | b5b9e82 | 2016-12-05 23:55:34 +0000 | [diff] [blame] | 786 | module deque { |
| 787 | header "experimental/deque" |
| 788 | export * |
| 789 | } |
Eric Fiselier | b5b9e82 | 2016-12-05 23:55:34 +0000 | [diff] [blame] | 790 | module filesystem { |
| 791 | header "experimental/filesystem" |
| 792 | export * |
| 793 | } |
| 794 | module forward_list { |
| 795 | header "experimental/forward_list" |
| 796 | export * |
| 797 | } |
| 798 | module functional { |
| 799 | header "experimental/functional" |
| 800 | export * |
| 801 | } |
| 802 | module iterator { |
| 803 | header "experimental/iterator" |
| 804 | export * |
| 805 | } |
| 806 | module list { |
| 807 | header "experimental/list" |
| 808 | export * |
| 809 | } |
| 810 | module map { |
| 811 | header "experimental/map" |
| 812 | export * |
| 813 | } |
| 814 | module memory_resource { |
| 815 | header "experimental/memory_resource" |
| 816 | export * |
| 817 | } |
Eric Fiselier | b5b9e82 | 2016-12-05 23:55:34 +0000 | [diff] [blame] | 818 | module propagate_const { |
| 819 | header "experimental/propagate_const" |
| 820 | export * |
| 821 | } |
Eric Fiselier | b5b9e82 | 2016-12-05 23:55:34 +0000 | [diff] [blame] | 822 | module regex { |
| 823 | header "experimental/regex" |
| 824 | export * |
| 825 | } |
Tim Shen | 158e51b | 2018-04-23 21:54:06 +0000 | [diff] [blame] | 826 | module simd { |
| 827 | header "experimental/simd" |
| 828 | export * |
| 829 | } |
Eric Fiselier | b5b9e82 | 2016-12-05 23:55:34 +0000 | [diff] [blame] | 830 | module set { |
| 831 | header "experimental/set" |
| 832 | export * |
| 833 | } |
Marshall Clow | d2ad87e | 2018-07-24 03:01:02 +0000 | [diff] [blame] | 834 | module span { |
| 835 | header "span" |
| 836 | export * |
| 837 | } |
Eric Fiselier | b5b9e82 | 2016-12-05 23:55:34 +0000 | [diff] [blame] | 838 | module string { |
| 839 | header "experimental/string" |
| 840 | export * |
| 841 | } |
Eric Fiselier | b5b9e82 | 2016-12-05 23:55:34 +0000 | [diff] [blame] | 842 | module type_traits { |
| 843 | header "experimental/type_traits" |
| 844 | export * |
| 845 | } |
| 846 | module unordered_map { |
| 847 | header "experimental/unordered_map" |
| 848 | export * |
| 849 | } |
| 850 | module unordered_set { |
| 851 | header "experimental/unordered_set" |
| 852 | export * |
| 853 | } |
| 854 | module utility { |
| 855 | header "experimental/utility" |
| 856 | export * |
| 857 | } |
| 858 | module vector { |
| 859 | header "experimental/vector" |
| 860 | export * |
| 861 | } |
| 862 | // FIXME these should be private |
| 863 | module __memory { |
| 864 | header "experimental/__memory" |
| 865 | export * |
| 866 | } |
| 867 | } // end experimental |
Richard Smith | 31cfef0 | 2014-05-21 00:33:49 +0000 | [diff] [blame] | 868 | } |