xref: /freebsd/contrib/llvm-project/libcxx/include/module.modulemap (revision 0fca6ea1d4eea4c934cfff25ac9ee8ad6fe95583)
1*0fca6ea1SDimitry Andric// Main C++ standard library interfaces
2*0fca6ea1SDimitry Andricmodule std_algorithm [system] {
3*0fca6ea1SDimitry Andric  header "algorithm"
4*0fca6ea1SDimitry Andric  export *
5*0fca6ea1SDimitry Andric}
6*0fca6ea1SDimitry Andricmodule std_any [system] {
7*0fca6ea1SDimitry Andric  header "any"
8*0fca6ea1SDimitry Andric  export *
9*0fca6ea1SDimitry Andric}
10*0fca6ea1SDimitry Andricmodule std_array [system] {
11*0fca6ea1SDimitry Andric  header "array"
12*0fca6ea1SDimitry Andric  export *
13*0fca6ea1SDimitry Andric}
14*0fca6ea1SDimitry Andricmodule std_atomic [system] {
15*0fca6ea1SDimitry Andric  header "atomic"
16*0fca6ea1SDimitry Andric  export *
17*0fca6ea1SDimitry Andric}
18*0fca6ea1SDimitry Andricmodule std_barrier [system] {
19*0fca6ea1SDimitry Andric  header "barrier"
20*0fca6ea1SDimitry Andric  export *
21*0fca6ea1SDimitry Andric}
22*0fca6ea1SDimitry Andricmodule std_bit [system] {
23*0fca6ea1SDimitry Andric  header "bit"
24*0fca6ea1SDimitry Andric  export *
25*0fca6ea1SDimitry Andric}
26*0fca6ea1SDimitry Andricmodule std_bitset [system] {
27*0fca6ea1SDimitry Andric  header "bitset"
28*0fca6ea1SDimitry Andric  export *
29*0fca6ea1SDimitry Andric}
30*0fca6ea1SDimitry Andricmodule std_charconv [system] {
31*0fca6ea1SDimitry Andric  header "charconv"
32*0fca6ea1SDimitry Andric  export *
33*0fca6ea1SDimitry Andric}
34*0fca6ea1SDimitry Andricmodule std_chrono [system] {
35*0fca6ea1SDimitry Andric  header "chrono"
36*0fca6ea1SDimitry Andric  export *
37*0fca6ea1SDimitry Andric}
38*0fca6ea1SDimitry Andricmodule std_codecvt [system] {
39*0fca6ea1SDimitry Andric  header "codecvt"
40*0fca6ea1SDimitry Andric  export *
41*0fca6ea1SDimitry Andric}
42*0fca6ea1SDimitry Andricmodule std_compare [system] {
43*0fca6ea1SDimitry Andric  header "compare"
44*0fca6ea1SDimitry Andric  export *
45*0fca6ea1SDimitry Andric}
46*0fca6ea1SDimitry Andricmodule std_complex [system] {
47*0fca6ea1SDimitry Andric  header "complex"
48*0fca6ea1SDimitry Andric  export *
49*0fca6ea1SDimitry Andric}
50*0fca6ea1SDimitry Andricmodule std_concepts [system] {
51*0fca6ea1SDimitry Andric  header "concepts"
52*0fca6ea1SDimitry Andric  export *
53*0fca6ea1SDimitry Andric}
54*0fca6ea1SDimitry Andricmodule std_condition_variable [system] {
55*0fca6ea1SDimitry Andric  header "condition_variable"
56*0fca6ea1SDimitry Andric  export *
57*0fca6ea1SDimitry Andric}
58*0fca6ea1SDimitry Andricmodule std_coroutine [system] {
59*0fca6ea1SDimitry Andric  header "coroutine"
60*0fca6ea1SDimitry Andric  export *
61*0fca6ea1SDimitry Andric}
62*0fca6ea1SDimitry Andricmodule std_deque [system] {
63*0fca6ea1SDimitry Andric  header "deque"
64*0fca6ea1SDimitry Andric  export *
65*0fca6ea1SDimitry Andric}
66*0fca6ea1SDimitry Andricmodule std_exception [system] {
67*0fca6ea1SDimitry Andric  header "exception"
68*0fca6ea1SDimitry Andric  export *
69*0fca6ea1SDimitry Andric}
70*0fca6ea1SDimitry Andricmodule std_execution [system] {
71*0fca6ea1SDimitry Andric  header "execution"
72*0fca6ea1SDimitry Andric  export *
73*0fca6ea1SDimitry Andric}
74*0fca6ea1SDimitry Andricmodule std_expected [system] {
75*0fca6ea1SDimitry Andric  header "expected"
76*0fca6ea1SDimitry Andric  export *
77*0fca6ea1SDimitry Andric}
78*0fca6ea1SDimitry Andricmodule std_filesystem [system] {
79*0fca6ea1SDimitry Andric  header "filesystem"
80*0fca6ea1SDimitry Andric  export *
81*0fca6ea1SDimitry Andric}
82*0fca6ea1SDimitry Andricmodule std_format [system] {
83*0fca6ea1SDimitry Andric  header "format"
84*0fca6ea1SDimitry Andric  export *
85*0fca6ea1SDimitry Andric}
86*0fca6ea1SDimitry Andricmodule std_forward_list [system] {
87*0fca6ea1SDimitry Andric  header "forward_list"
88*0fca6ea1SDimitry Andric  export *
89*0fca6ea1SDimitry Andric}
90*0fca6ea1SDimitry Andricmodule std_fstream [system] {
91*0fca6ea1SDimitry Andric  header "fstream"
92*0fca6ea1SDimitry Andric  export *
93*0fca6ea1SDimitry Andric}
94*0fca6ea1SDimitry Andricmodule std_functional [system] {
95*0fca6ea1SDimitry Andric  header "functional"
96*0fca6ea1SDimitry Andric  export *
97*0fca6ea1SDimitry Andric}
98*0fca6ea1SDimitry Andricmodule std_future [system] {
99*0fca6ea1SDimitry Andric  header "future"
100*0fca6ea1SDimitry Andric  export *
101*0fca6ea1SDimitry Andric}
102*0fca6ea1SDimitry Andricmodule std_initializer_list [system] {
103*0fca6ea1SDimitry Andric  header "initializer_list"
104*0fca6ea1SDimitry Andric  export *
105*0fca6ea1SDimitry Andric}
106*0fca6ea1SDimitry Andricmodule std_iomanip [system] {
107*0fca6ea1SDimitry Andric  header "iomanip"
108*0fca6ea1SDimitry Andric  export *
109*0fca6ea1SDimitry Andric}
110*0fca6ea1SDimitry Andricmodule std_ios [system] {
111*0fca6ea1SDimitry Andric  header "ios"
112*0fca6ea1SDimitry Andric  export *
113*0fca6ea1SDimitry Andric}
114*0fca6ea1SDimitry Andricmodule std_iosfwd [system] {
115*0fca6ea1SDimitry Andric  header "iosfwd"
116*0fca6ea1SDimitry Andric  export *
117*0fca6ea1SDimitry Andric}
118*0fca6ea1SDimitry Andricmodule std_iostream [system] {
119*0fca6ea1SDimitry Andric  header "iostream"
120*0fca6ea1SDimitry Andric  export *
121*0fca6ea1SDimitry Andric}
122*0fca6ea1SDimitry Andricmodule std_istream [system] {
123*0fca6ea1SDimitry Andric  header "istream"
124*0fca6ea1SDimitry Andric  export *
125*0fca6ea1SDimitry Andric}
126*0fca6ea1SDimitry Andricmodule std_iterator [system] {
127*0fca6ea1SDimitry Andric  header "iterator"
128*0fca6ea1SDimitry Andric  export *
129*0fca6ea1SDimitry Andric}
130*0fca6ea1SDimitry Andricmodule std_latch [system] {
131*0fca6ea1SDimitry Andric  header "latch"
132*0fca6ea1SDimitry Andric  export *
133*0fca6ea1SDimitry Andric}
134*0fca6ea1SDimitry Andricmodule std_limits [system] {
135*0fca6ea1SDimitry Andric  header "limits"
136*0fca6ea1SDimitry Andric  export *
137*0fca6ea1SDimitry Andric}
138*0fca6ea1SDimitry Andricmodule std_list [system] {
139*0fca6ea1SDimitry Andric  header "list"
140*0fca6ea1SDimitry Andric  export *
141*0fca6ea1SDimitry Andric}
142*0fca6ea1SDimitry Andricmodule std_locale [system] {
143*0fca6ea1SDimitry Andric  header "locale"
144*0fca6ea1SDimitry Andric  export *
145*0fca6ea1SDimitry Andric}
146*0fca6ea1SDimitry Andricmodule std_map [system] {
147*0fca6ea1SDimitry Andric  header "map"
148*0fca6ea1SDimitry Andric  export *
149*0fca6ea1SDimitry Andric}
150*0fca6ea1SDimitry Andricmodule std_mdspan [system] {
151*0fca6ea1SDimitry Andric  header "mdspan"
152*0fca6ea1SDimitry Andric  export *
153*0fca6ea1SDimitry Andric}
154*0fca6ea1SDimitry Andricmodule std_memory [system] {
155*0fca6ea1SDimitry Andric  header "memory"
156*0fca6ea1SDimitry Andric  export *
157*0fca6ea1SDimitry Andric}
158*0fca6ea1SDimitry Andricmodule std_memory_resource [system] {
159*0fca6ea1SDimitry Andric  header "memory_resource"
160*0fca6ea1SDimitry Andric  export *
161*0fca6ea1SDimitry Andric}
162*0fca6ea1SDimitry Andricmodule std_mutex [system] {
163*0fca6ea1SDimitry Andric  header "mutex"
164*0fca6ea1SDimitry Andric  export *
165*0fca6ea1SDimitry Andric}
166*0fca6ea1SDimitry Andricmodule std_new [system] {
167*0fca6ea1SDimitry Andric  header "new"
168*0fca6ea1SDimitry Andric  export *
169*0fca6ea1SDimitry Andric}
170*0fca6ea1SDimitry Andricmodule std_numbers [system] {
171*0fca6ea1SDimitry Andric  header "numbers"
172*0fca6ea1SDimitry Andric  export *
173*0fca6ea1SDimitry Andric}
174*0fca6ea1SDimitry Andricmodule std_numeric [system] {
175*0fca6ea1SDimitry Andric  header "numeric"
176*0fca6ea1SDimitry Andric  export *
177*0fca6ea1SDimitry Andric}
178*0fca6ea1SDimitry Andricmodule std_optional [system] {
179*0fca6ea1SDimitry Andric  header "optional"
180*0fca6ea1SDimitry Andric  export *
181*0fca6ea1SDimitry Andric}
182*0fca6ea1SDimitry Andricmodule std_ostream [system] {
183*0fca6ea1SDimitry Andric  header "ostream"
184*0fca6ea1SDimitry Andric  export *
185*0fca6ea1SDimitry Andric}
186*0fca6ea1SDimitry Andricmodule std_print [system] {
187*0fca6ea1SDimitry Andric  header "print"
188*0fca6ea1SDimitry Andric  export *
189*0fca6ea1SDimitry Andric}
190*0fca6ea1SDimitry Andricmodule std_queue [system] {
191*0fca6ea1SDimitry Andric  header "queue"
192*0fca6ea1SDimitry Andric  export *
193*0fca6ea1SDimitry Andric}
194*0fca6ea1SDimitry Andricmodule std_random [system] {
195*0fca6ea1SDimitry Andric  header "random"
196*0fca6ea1SDimitry Andric  export *
197*0fca6ea1SDimitry Andric}
198*0fca6ea1SDimitry Andricmodule std_ranges [system] {
199*0fca6ea1SDimitry Andric  header "ranges"
200*0fca6ea1SDimitry Andric  export *
201*0fca6ea1SDimitry Andric}
202*0fca6ea1SDimitry Andricmodule std_ratio [system] {
203*0fca6ea1SDimitry Andric  header "ratio"
204*0fca6ea1SDimitry Andric  export *
205*0fca6ea1SDimitry Andric}
206*0fca6ea1SDimitry Andricmodule std_regex [system] {
207*0fca6ea1SDimitry Andric  header "regex"
208*0fca6ea1SDimitry Andric  export *
209*0fca6ea1SDimitry Andric}
210*0fca6ea1SDimitry Andricmodule std_scoped_allocator [system] {
211*0fca6ea1SDimitry Andric  header "scoped_allocator"
212*0fca6ea1SDimitry Andric  export *
213*0fca6ea1SDimitry Andric}
214*0fca6ea1SDimitry Andricmodule std_semaphore [system] {
215*0fca6ea1SDimitry Andric  header "semaphore"
216*0fca6ea1SDimitry Andric  export *
217*0fca6ea1SDimitry Andric}
218*0fca6ea1SDimitry Andricmodule std_set [system] {
219*0fca6ea1SDimitry Andric  header "set"
220*0fca6ea1SDimitry Andric  export *
221*0fca6ea1SDimitry Andric}
222*0fca6ea1SDimitry Andricmodule std_shared_mutex [system] {
223*0fca6ea1SDimitry Andric  header "shared_mutex"
224*0fca6ea1SDimitry Andric  export std_version
225*0fca6ea1SDimitry Andric}
226*0fca6ea1SDimitry Andricmodule std_source_location [system] {
227*0fca6ea1SDimitry Andric  header "source_location"
228*0fca6ea1SDimitry Andric  export *
229*0fca6ea1SDimitry Andric}
230*0fca6ea1SDimitry Andricmodule std_span [system] {
231*0fca6ea1SDimitry Andric  header "span"
232*0fca6ea1SDimitry Andric  export std_private_ranges_enable_borrowed_range
233*0fca6ea1SDimitry Andric  export std_version
234*0fca6ea1SDimitry Andric  export std_private_span_span_fwd
235*0fca6ea1SDimitry Andric}
236*0fca6ea1SDimitry Andricmodule std_sstream [system] {
237*0fca6ea1SDimitry Andric  header "sstream"
238*0fca6ea1SDimitry Andric  export *
239*0fca6ea1SDimitry Andric}
240*0fca6ea1SDimitry Andricmodule std_stack [system] {
241*0fca6ea1SDimitry Andric  header "stack"
242*0fca6ea1SDimitry Andric  export *
243*0fca6ea1SDimitry Andric}
244*0fca6ea1SDimitry Andricmodule std_stdexcept [system] {
245*0fca6ea1SDimitry Andric  header "stdexcept"
246*0fca6ea1SDimitry Andric  export *
247*0fca6ea1SDimitry Andric}
248*0fca6ea1SDimitry Andricmodule std_stop_token {
249*0fca6ea1SDimitry Andric  header "stop_token"
250*0fca6ea1SDimitry Andric  export *
251*0fca6ea1SDimitry Andric}
252*0fca6ea1SDimitry Andricmodule std_streambuf [system] {
253*0fca6ea1SDimitry Andric  header "streambuf"
254*0fca6ea1SDimitry Andric  export *
255*0fca6ea1SDimitry Andric}
256*0fca6ea1SDimitry Andricmodule std_string [system] {
257*0fca6ea1SDimitry Andric  header "string"
258*0fca6ea1SDimitry Andric  export *
259*0fca6ea1SDimitry Andric}
260*0fca6ea1SDimitry Andricmodule std_string_view [system] {
261*0fca6ea1SDimitry Andric  header "string_view"
262*0fca6ea1SDimitry Andric  export *
263*0fca6ea1SDimitry Andric}
264*0fca6ea1SDimitry Andricmodule std_strstream [system] {
265*0fca6ea1SDimitry Andric  header "strstream"
266*0fca6ea1SDimitry Andric  export *
267*0fca6ea1SDimitry Andric}
268*0fca6ea1SDimitry Andricmodule std_syncstream [system] {
269*0fca6ea1SDimitry Andric  header "syncstream"
270*0fca6ea1SDimitry Andric  export *
271*0fca6ea1SDimitry Andric}
272*0fca6ea1SDimitry Andricmodule std_system_error [system] {
273*0fca6ea1SDimitry Andric  header "system_error"
274*0fca6ea1SDimitry Andric  export *
275*0fca6ea1SDimitry Andric}
276*0fca6ea1SDimitry Andricmodule std_thread [system] {
277*0fca6ea1SDimitry Andric  header "thread"
278*0fca6ea1SDimitry Andric  export *
279*0fca6ea1SDimitry Andric}
280*0fca6ea1SDimitry Andricmodule std_tuple [system] {
281*0fca6ea1SDimitry Andric  header "tuple"
282*0fca6ea1SDimitry Andric  export *
283*0fca6ea1SDimitry Andric}
284*0fca6ea1SDimitry Andricmodule std_type_traits [system] {
285*0fca6ea1SDimitry Andric  header "type_traits"
286*0fca6ea1SDimitry Andric  export *
287*0fca6ea1SDimitry Andric}
288*0fca6ea1SDimitry Andricmodule std_typeindex [system] {
289*0fca6ea1SDimitry Andric  header "typeindex"
290*0fca6ea1SDimitry Andric  export *
291*0fca6ea1SDimitry Andric}
292*0fca6ea1SDimitry Andricmodule std_typeinfo [system] {
293*0fca6ea1SDimitry Andric  header "typeinfo"
294*0fca6ea1SDimitry Andric  export *
295*0fca6ea1SDimitry Andric}
296*0fca6ea1SDimitry Andricmodule std_unordered_map [system] {
297*0fca6ea1SDimitry Andric  header "unordered_map"
298*0fca6ea1SDimitry Andric  export *
299*0fca6ea1SDimitry Andric}
300*0fca6ea1SDimitry Andricmodule std_unordered_set [system] {
301*0fca6ea1SDimitry Andric  header "unordered_set"
302*0fca6ea1SDimitry Andric  export *
303*0fca6ea1SDimitry Andric}
304*0fca6ea1SDimitry Andricmodule std_utility [system] {
305*0fca6ea1SDimitry Andric  header "utility"
306*0fca6ea1SDimitry Andric  export *
307*0fca6ea1SDimitry Andric}
308*0fca6ea1SDimitry Andricmodule std_valarray [system] {
309*0fca6ea1SDimitry Andric  header "valarray"
310*0fca6ea1SDimitry Andric  export *
311*0fca6ea1SDimitry Andric}
312*0fca6ea1SDimitry Andricmodule std_variant [system] {
313*0fca6ea1SDimitry Andric  header "variant"
314*0fca6ea1SDimitry Andric  export *
315*0fca6ea1SDimitry Andric}
316*0fca6ea1SDimitry Andricmodule std_vector [system] {
317*0fca6ea1SDimitry Andric  header "vector"
318*0fca6ea1SDimitry Andric  export *
319*0fca6ea1SDimitry Andric}
320*0fca6ea1SDimitry Andricmodule std_version [system] {
321*0fca6ea1SDimitry Andric  header "version"
322*0fca6ea1SDimitry Andric  export *
323*0fca6ea1SDimitry Andric}
324*0fca6ea1SDimitry Andric
325*0fca6ea1SDimitry Andric// C standard library interface wrappers
326*0fca6ea1SDimitry Andricmodule std_cassert [system] {
327*0fca6ea1SDimitry Andric  // <cassert>'s use of NDEBUG requires textual inclusion.
328*0fca6ea1SDimitry Andric  textual header "cassert"
329*0fca6ea1SDimitry Andric}
330*0fca6ea1SDimitry Andricmodule std_ccomplex [system] {
331*0fca6ea1SDimitry Andric  header "ccomplex"
332*0fca6ea1SDimitry Andric  export *
333*0fca6ea1SDimitry Andric}
334*0fca6ea1SDimitry Andricmodule std_cctype [system] {
335*0fca6ea1SDimitry Andric  header "cctype"
336*0fca6ea1SDimitry Andric  export *
337*0fca6ea1SDimitry Andric}
338*0fca6ea1SDimitry Andricmodule std_cerrno [system] {
339*0fca6ea1SDimitry Andric  header "cerrno"
340*0fca6ea1SDimitry Andric  export *
341*0fca6ea1SDimitry Andric}
342*0fca6ea1SDimitry Andricmodule std_cfenv [system] {
343*0fca6ea1SDimitry Andric  header "cfenv"
344*0fca6ea1SDimitry Andric  export *
345*0fca6ea1SDimitry Andric}
346*0fca6ea1SDimitry Andricmodule std_cfloat [system] {
347*0fca6ea1SDimitry Andric  header "cfloat"
348*0fca6ea1SDimitry Andric  export *
349*0fca6ea1SDimitry Andric}
350*0fca6ea1SDimitry Andricmodule std_cinttypes [system] {
351*0fca6ea1SDimitry Andric  header "cinttypes"
352*0fca6ea1SDimitry Andric  export *
353*0fca6ea1SDimitry Andric}
354*0fca6ea1SDimitry Andricmodule std_ciso646 [system] {
355*0fca6ea1SDimitry Andric  header "ciso646"
356*0fca6ea1SDimitry Andric  export *
357*0fca6ea1SDimitry Andric}
358*0fca6ea1SDimitry Andricmodule std_climits [system] {
359*0fca6ea1SDimitry Andric  header "climits"
360*0fca6ea1SDimitry Andric  export *
361*0fca6ea1SDimitry Andric}
362*0fca6ea1SDimitry Andricmodule std_clocale [system] {
363*0fca6ea1SDimitry Andric  header "clocale"
364*0fca6ea1SDimitry Andric  export *
365*0fca6ea1SDimitry Andric}
366*0fca6ea1SDimitry Andricmodule std_cmath [system] {
367*0fca6ea1SDimitry Andric  header "cmath"
368*0fca6ea1SDimitry Andric  export *
369*0fca6ea1SDimitry Andric}
370*0fca6ea1SDimitry Andricmodule std_csetjmp [system] {
371*0fca6ea1SDimitry Andric  header "csetjmp"
372*0fca6ea1SDimitry Andric  export *
373*0fca6ea1SDimitry Andric}
374*0fca6ea1SDimitry Andricmodule std_csignal [system] {
375*0fca6ea1SDimitry Andric  header "csignal"
376*0fca6ea1SDimitry Andric  export *
377*0fca6ea1SDimitry Andric}
378*0fca6ea1SDimitry Andric// FIXME: <cstdalign> is missing.
379*0fca6ea1SDimitry Andricmodule std_cstdarg [system] {
380*0fca6ea1SDimitry Andric  header "cstdarg"
381*0fca6ea1SDimitry Andric  export *
382*0fca6ea1SDimitry Andric}
383*0fca6ea1SDimitry Andricmodule std_cstdbool [system] {
384*0fca6ea1SDimitry Andric  header "cstdbool"
385*0fca6ea1SDimitry Andric  export *
386*0fca6ea1SDimitry Andric}
387*0fca6ea1SDimitry Andricmodule std_cstddef [system] {
388*0fca6ea1SDimitry Andric  header "cstddef"
389*0fca6ea1SDimitry Andric  export *
390*0fca6ea1SDimitry Andric}
391*0fca6ea1SDimitry Andricmodule std_cstdint [system] {
392*0fca6ea1SDimitry Andric  header "cstdint"
393*0fca6ea1SDimitry Andric  export *
394*0fca6ea1SDimitry Andric}
395*0fca6ea1SDimitry Andricmodule std_cstdio [system] {
396*0fca6ea1SDimitry Andric  header "cstdio"
397*0fca6ea1SDimitry Andric  export *
398*0fca6ea1SDimitry Andric}
399*0fca6ea1SDimitry Andricmodule std_cstdlib [system] {
400*0fca6ea1SDimitry Andric  header "cstdlib"
401*0fca6ea1SDimitry Andric  export *
402*0fca6ea1SDimitry Andric}
403*0fca6ea1SDimitry Andricmodule std_cstring [system] {
404*0fca6ea1SDimitry Andric  header "cstring"
405*0fca6ea1SDimitry Andric  export *
406*0fca6ea1SDimitry Andric}
407*0fca6ea1SDimitry Andricmodule std_ctgmath [system] {
408*0fca6ea1SDimitry Andric  header "ctgmath"
409*0fca6ea1SDimitry Andric  export *
410*0fca6ea1SDimitry Andric}
411*0fca6ea1SDimitry Andricmodule std_ctime [system] {
412*0fca6ea1SDimitry Andric  header "ctime"
413*0fca6ea1SDimitry Andric  export *
414*0fca6ea1SDimitry Andric}
415*0fca6ea1SDimitry Andricmodule std_cuchar [system] {
416*0fca6ea1SDimitry Andric  header "cuchar"
417*0fca6ea1SDimitry Andric  export *
418*0fca6ea1SDimitry Andric}
419*0fca6ea1SDimitry Andricmodule std_cwchar [system] {
420*0fca6ea1SDimitry Andric  header "cwchar"
421*0fca6ea1SDimitry Andric  export *
422*0fca6ea1SDimitry Andric}
423*0fca6ea1SDimitry Andricmodule std_cwctype [system] {
424*0fca6ea1SDimitry Andric  header "cwctype"
425*0fca6ea1SDimitry Andric  export *
426*0fca6ea1SDimitry Andric}
427*0fca6ea1SDimitry Andric
428*0fca6ea1SDimitry Andric// C standard library interfaces augmented/replaced in C++
429*0fca6ea1SDimitry Andric// <assert.h> provided by C library.
430*0fca6ea1SDimitry Andricmodule std_complex_h [system] {
431*0fca6ea1SDimitry Andric  header "complex.h"
432*0fca6ea1SDimitry Andric  export *
433*0fca6ea1SDimitry Andric}
434*0fca6ea1SDimitry Andricmodule std_ctype_h [system] {
435*0fca6ea1SDimitry Andric  header "ctype.h"
436*0fca6ea1SDimitry Andric  export *
437*0fca6ea1SDimitry Andric}
438*0fca6ea1SDimitry Andricmodule std_errno_h [system] {
439*0fca6ea1SDimitry Andric  header "errno.h"
440*0fca6ea1SDimitry Andric  export *
441*0fca6ea1SDimitry Andric}
442*0fca6ea1SDimitry Andricmodule std_fenv_h [system] {
443*0fca6ea1SDimitry Andric  header "fenv.h"
444*0fca6ea1SDimitry Andric  export *
445*0fca6ea1SDimitry Andric}
446*0fca6ea1SDimitry Andricmodule std_float_h [system] {
447*0fca6ea1SDimitry Andric  header "float.h"
448*0fca6ea1SDimitry Andric  export *
449*0fca6ea1SDimitry Andric}
450*0fca6ea1SDimitry Andricmodule std_inttypes_h [system] {
451*0fca6ea1SDimitry Andric  header "inttypes.h"
452*0fca6ea1SDimitry Andric  export *
453*0fca6ea1SDimitry Andric}
454*0fca6ea1SDimitry Andric// <iso646.h> provided by compiler.
455*0fca6ea1SDimitry Andricmodule std_locale_h [system] {
456*0fca6ea1SDimitry Andric  header "locale.h"
457*0fca6ea1SDimitry Andric  export *
458*0fca6ea1SDimitry Andric}
459*0fca6ea1SDimitry Andricmodule std_math_h [system] {
460*0fca6ea1SDimitry Andric  header "math.h"
461*0fca6ea1SDimitry Andric  export *
462*0fca6ea1SDimitry Andric}
463*0fca6ea1SDimitry Andric// <setjmp.h> provided by C library.
464*0fca6ea1SDimitry Andric// <signal.h> provided by C library.
465*0fca6ea1SDimitry Andric// FIXME: <stdalign.h> is missing.
466*0fca6ea1SDimitry Andric// <stdarg.h> provided by compiler.
467*0fca6ea1SDimitry Andricmodule std_stdatomic_h [system] {
468*0fca6ea1SDimitry Andric  header "stdatomic.h"
469*0fca6ea1SDimitry Andric  export *
470*0fca6ea1SDimitry Andric}
471*0fca6ea1SDimitry Andricmodule std_stdbool_h [system] {
472*0fca6ea1SDimitry Andric  // <stdbool.h>'s __bool_true_false_are_defined macro requires textual inclusion.
473*0fca6ea1SDimitry Andric  textual header "stdbool.h"
474*0fca6ea1SDimitry Andric  export *
475*0fca6ea1SDimitry Andric}
476*0fca6ea1SDimitry Andricmodule std_stddef_h [system] {
477*0fca6ea1SDimitry Andric  // <stddef.h>'s __need_* macros require textual inclusion.
478*0fca6ea1SDimitry Andric  textual header "stddef.h"
479*0fca6ea1SDimitry Andric  export *
480*0fca6ea1SDimitry Andric}
481*0fca6ea1SDimitry Andricmodule std_stdint_h [system] {
482*0fca6ea1SDimitry Andric  header "stdint.h"
483*0fca6ea1SDimitry Andric  export *
484*0fca6ea1SDimitry Andric}
485*0fca6ea1SDimitry Andricmodule std_stdio_h [system] {
486*0fca6ea1SDimitry Andric  // <stdio.h>'s __need_* macros require textual inclusion.
487*0fca6ea1SDimitry Andric  textual header "stdio.h"
488*0fca6ea1SDimitry Andric  export *
489*0fca6ea1SDimitry Andric}
490*0fca6ea1SDimitry Andricmodule std_stdlib_h [system] {
491*0fca6ea1SDimitry Andric  // <stdlib.h>'s __need_* macros require textual inclusion.
492*0fca6ea1SDimitry Andric  textual header "stdlib.h"
493*0fca6ea1SDimitry Andric  export *
494*0fca6ea1SDimitry Andric}
495*0fca6ea1SDimitry Andricmodule std_string_h [system] {
496*0fca6ea1SDimitry Andric  header "string.h"
497*0fca6ea1SDimitry Andric  export *
498*0fca6ea1SDimitry Andric}
499*0fca6ea1SDimitry Andricmodule std_tgmath_h [system] {
500*0fca6ea1SDimitry Andric  header "tgmath.h"
501*0fca6ea1SDimitry Andric  export *
502*0fca6ea1SDimitry Andric}
503*0fca6ea1SDimitry Andricmodule std_uchar_h [system] {
504*0fca6ea1SDimitry Andric  header "uchar.h"
505*0fca6ea1SDimitry Andric  export *
506*0fca6ea1SDimitry Andric}
507*0fca6ea1SDimitry Andric// <time.h> provided by C library.
508*0fca6ea1SDimitry Andricmodule std_wchar_h [system] {
509*0fca6ea1SDimitry Andric  // <wchar.h>'s __need_* macros require textual inclusion.
510*0fca6ea1SDimitry Andric  textual header "wchar.h"
511*0fca6ea1SDimitry Andric  export *
512*0fca6ea1SDimitry Andric}
513*0fca6ea1SDimitry Andricmodule std_wctype_h [system] {
514*0fca6ea1SDimitry Andric  header "wctype.h"
515*0fca6ea1SDimitry Andric  export *
516*0fca6ea1SDimitry Andric}
517*0fca6ea1SDimitry Andric
518*0fca6ea1SDimitry Andric// Experimental C++ standard library interfaces
519*0fca6ea1SDimitry Andricmodule std_experimental [system] {
520*0fca6ea1SDimitry Andric  module iterator {
521*0fca6ea1SDimitry Andric    header "experimental/iterator"
522*0fca6ea1SDimitry Andric    export *
523*0fca6ea1SDimitry Andric  }
524*0fca6ea1SDimitry Andric  module memory {
525*0fca6ea1SDimitry Andric    header "experimental/memory"
526*0fca6ea1SDimitry Andric    export *
527*0fca6ea1SDimitry Andric  }
528*0fca6ea1SDimitry Andric  module propagate_const {
529*0fca6ea1SDimitry Andric    header "experimental/propagate_const"
530*0fca6ea1SDimitry Andric    export *
531*0fca6ea1SDimitry Andric  }
532*0fca6ea1SDimitry Andric  module simd {
533*0fca6ea1SDimitry Andric    module aligned_tag          { private header "experimental/__simd/aligned_tag.h" }
534*0fca6ea1SDimitry Andric    module declaration          { private header "experimental/__simd/declaration.h" }
535*0fca6ea1SDimitry Andric    module reference            { private header "experimental/__simd/reference.h" }
536*0fca6ea1SDimitry Andric    module scalar               { private header "experimental/__simd/scalar.h" }
537*0fca6ea1SDimitry Andric    module simd                 { private header "experimental/__simd/simd.h" }
538*0fca6ea1SDimitry Andric    module simd_mask            { private header "experimental/__simd/simd_mask.h" }
539*0fca6ea1SDimitry Andric    module traits               { private header "experimental/__simd/traits.h" }
540*0fca6ea1SDimitry Andric    module utility              { private header "experimental/__simd/utility.h" }
541*0fca6ea1SDimitry Andric    module vec_ext              { private header "experimental/__simd/vec_ext.h" }
542*0fca6ea1SDimitry Andric
543*0fca6ea1SDimitry Andric    header "experimental/simd"
544*0fca6ea1SDimitry Andric    export *
545*0fca6ea1SDimitry Andric  }
546*0fca6ea1SDimitry Andric  module type_traits {
547*0fca6ea1SDimitry Andric    header "experimental/type_traits"
548*0fca6ea1SDimitry Andric    export *
549*0fca6ea1SDimitry Andric  }
550*0fca6ea1SDimitry Andric  module utility {
551*0fca6ea1SDimitry Andric    header "experimental/utility"
552*0fca6ea1SDimitry Andric    export *
553*0fca6ea1SDimitry Andric  }
554*0fca6ea1SDimitry Andric  module __config {
555*0fca6ea1SDimitry Andric    textual header "experimental/__config"
556*0fca6ea1SDimitry Andric    export *
557*0fca6ea1SDimitry Andric  }
558*0fca6ea1SDimitry Andric}
559*0fca6ea1SDimitry Andric
560*0fca6ea1SDimitry Andric// Convenience method to get all of the above modules in a single import statement.
561*0fca6ea1SDimitry Andric// Importing only the needed modules is likely to be more performant.
562*0fca6ea1SDimitry Andricmodule std [system] {
563*0fca6ea1SDimitry Andric  header "__std_clang_module"
564*0fca6ea1SDimitry Andric  export *
565*0fca6ea1SDimitry Andric}
566*0fca6ea1SDimitry Andric
567*0fca6ea1SDimitry Andric// Implementation detail headers that are private to libc++. These modules
568*0fca6ea1SDimitry Andric// must not be directly imported.
569*0fca6ea1SDimitry Andricmodule std_private_assert            [system] {
570*0fca6ea1SDimitry Andric  header "__assert"
571*0fca6ea1SDimitry Andric  export *
572*0fca6ea1SDimitry Andric}
573*0fca6ea1SDimitry Andricmodule std_private_bit_reference     [system] {
574*0fca6ea1SDimitry Andric  header "__bit_reference"
575*0fca6ea1SDimitry Andric  export *
576*0fca6ea1SDimitry Andric}
577*0fca6ea1SDimitry Andricmodule std_private_fwd_bit_reference [system] {
578*0fca6ea1SDimitry Andric  header "__fwd/bit_reference.h"
579*0fca6ea1SDimitry Andric}
580*0fca6ea1SDimitry Andricmodule std_private_config            [system] {
581*0fca6ea1SDimitry Andric  textual header "__config"
582*0fca6ea1SDimitry Andric  textual header "__configuration/abi.h"
583*0fca6ea1SDimitry Andric  textual header "__configuration/availability.h"
584*0fca6ea1SDimitry Andric  textual header "__configuration/compiler.h"
585*0fca6ea1SDimitry Andric  textual header "__configuration/language.h"
586*0fca6ea1SDimitry Andric  textual header "__configuration/platform.h"
587*0fca6ea1SDimitry Andric  export *
588*0fca6ea1SDimitry Andric}
589*0fca6ea1SDimitry Andricmodule std_private_hash_table        [system] {
590*0fca6ea1SDimitry Andric  header "__hash_table"
591*0fca6ea1SDimitry Andric  export *
592*0fca6ea1SDimitry Andric}
593*0fca6ea1SDimitry Andricmodule std_private_locale            [system] {
594*0fca6ea1SDimitry Andric  header "__locale"
595*0fca6ea1SDimitry Andric  export *
596*0fca6ea1SDimitry Andric}
597*0fca6ea1SDimitry Andricmodule std_private_mbstate_t         [system] {
598*0fca6ea1SDimitry Andric  header "__mbstate_t.h"
599*0fca6ea1SDimitry Andric  export *
600*0fca6ea1SDimitry Andric}
601*0fca6ea1SDimitry Andricmodule std_private_node_handle       [system] {
602*0fca6ea1SDimitry Andric  header "__node_handle"
603*0fca6ea1SDimitry Andric  export *
604*0fca6ea1SDimitry Andric}
605*0fca6ea1SDimitry Andricmodule std_private_split_buffer      [system] {
606*0fca6ea1SDimitry Andric  header "__split_buffer"
607*0fca6ea1SDimitry Andric  export *
608*0fca6ea1SDimitry Andric}
609*0fca6ea1SDimitry Andricmodule std_private_std_mbstate_t     [system] {
610*0fca6ea1SDimitry Andric  header "__std_mbstate_t.h"
611*0fca6ea1SDimitry Andric  export *
612*0fca6ea1SDimitry Andric}
613*0fca6ea1SDimitry Andricmodule std_private_tree              [system] {
614*0fca6ea1SDimitry Andric  header "__tree"
615*0fca6ea1SDimitry Andric  export *
616*0fca6ea1SDimitry Andric}
617*0fca6ea1SDimitry Andricmodule std_private_undef_macros      [system] {
618*0fca6ea1SDimitry Andric  textual header "__undef_macros"
619*0fca6ea1SDimitry Andric  export *
620*0fca6ea1SDimitry Andric}
621*0fca6ea1SDimitry Andricmodule std_private_verbose_abort     [system] {
622*0fca6ea1SDimitry Andric  header "__verbose_abort"
623*0fca6ea1SDimitry Andric  export *
624*0fca6ea1SDimitry Andric}
625*0fca6ea1SDimitry Andric
626*0fca6ea1SDimitry Andricmodule std_private_algorithm_adjacent_find                               [system] { header "__algorithm/adjacent_find.h" }
627*0fca6ea1SDimitry Andricmodule std_private_algorithm_all_of                                      [system] { header "__algorithm/all_of.h" }
628*0fca6ea1SDimitry Andricmodule std_private_algorithm_any_of                                      [system] { header "__algorithm/any_of.h" }
629*0fca6ea1SDimitry Andricmodule std_private_algorithm_binary_search                               [system] { header "__algorithm/binary_search.h" }
630*0fca6ea1SDimitry Andricmodule std_private_algorithm_clamp                                       [system] { header "__algorithm/clamp.h" }
631*0fca6ea1SDimitry Andricmodule std_private_algorithm_comp                                        [system] { header "__algorithm/comp.h" }
632*0fca6ea1SDimitry Andricmodule std_private_algorithm_comp_ref_type                               [system] { header "__algorithm/comp_ref_type.h" }
633*0fca6ea1SDimitry Andricmodule std_private_algorithm_copy                                        [system] {
634*0fca6ea1SDimitry Andric  header "__algorithm/copy.h"
635*0fca6ea1SDimitry Andric  export std_private_algorithm_copy_move_common
636*0fca6ea1SDimitry Andric}
637*0fca6ea1SDimitry Andricmodule std_private_algorithm_copy_backward                               [system] { header "__algorithm/copy_backward.h" }
638*0fca6ea1SDimitry Andricmodule std_private_algorithm_copy_if                                     [system] { header "__algorithm/copy_if.h" }
639*0fca6ea1SDimitry Andricmodule std_private_algorithm_copy_move_common                            [system] {
640*0fca6ea1SDimitry Andric  header "__algorithm/copy_move_common.h"
641*0fca6ea1SDimitry Andric  export std_private_type_traits_is_trivially_copyable
642*0fca6ea1SDimitry Andric}
643*0fca6ea1SDimitry Andricmodule std_private_algorithm_copy_n                                      [system] { header "__algorithm/copy_n.h" }
644*0fca6ea1SDimitry Andricmodule std_private_algorithm_count                                       [system] { header "__algorithm/count.h" }
645*0fca6ea1SDimitry Andricmodule std_private_algorithm_count_if                                    [system] { header "__algorithm/count_if.h" }
646*0fca6ea1SDimitry Andricmodule std_private_algorithm_equal                                       [system] { header "__algorithm/equal.h" }
647*0fca6ea1SDimitry Andricmodule std_private_algorithm_equal_range                                 [system] { header "__algorithm/equal_range.h" }
648*0fca6ea1SDimitry Andricmodule std_private_algorithm_fill                                        [system] { header "__algorithm/fill.h" }
649*0fca6ea1SDimitry Andricmodule std_private_algorithm_fill_n                                      [system] { header "__algorithm/fill_n.h" }
650*0fca6ea1SDimitry Andricmodule std_private_algorithm_find                                        [system] {
651*0fca6ea1SDimitry Andric  header "__algorithm/find.h"
652*0fca6ea1SDimitry Andric  export std_private_algorithm_unwrap_iter
653*0fca6ea1SDimitry Andric}
654*0fca6ea1SDimitry Andricmodule std_private_algorithm_find_end                                    [system] { header "__algorithm/find_end.h" }
655*0fca6ea1SDimitry Andricmodule std_private_algorithm_find_first_of                               [system] { header "__algorithm/find_first_of.h" }
656*0fca6ea1SDimitry Andricmodule std_private_algorithm_find_if                                     [system] { header "__algorithm/find_if.h" }
657*0fca6ea1SDimitry Andricmodule std_private_algorithm_find_if_not                                 [system] { header "__algorithm/find_if_not.h" }
658*0fca6ea1SDimitry Andricmodule std_private_algorithm_find_segment_if                             [system] { header "__algorithm/find_segment_if.h" }
659*0fca6ea1SDimitry Andricmodule std_private_algorithm_fold                                        [system] { header "__algorithm/fold.h" }
660*0fca6ea1SDimitry Andricmodule std_private_algorithm_for_each                                    [system] { header "__algorithm/for_each.h" }
661*0fca6ea1SDimitry Andricmodule std_private_algorithm_for_each_n                                  [system] { header "__algorithm/for_each_n.h" }
662*0fca6ea1SDimitry Andricmodule std_private_algorithm_for_each_segment                            [system] { header "__algorithm/for_each_segment.h" }
663*0fca6ea1SDimitry Andricmodule std_private_algorithm_generate                                    [system] { header "__algorithm/generate.h" }
664*0fca6ea1SDimitry Andricmodule std_private_algorithm_generate_n                                  [system] { header "__algorithm/generate_n.h" }
665*0fca6ea1SDimitry Andricmodule std_private_algorithm_half_positive                               [system] { header "__algorithm/half_positive.h" }
666*0fca6ea1SDimitry Andricmodule std_private_algorithm_in_found_result                             [system] { header "__algorithm/in_found_result.h" }
667*0fca6ea1SDimitry Andricmodule std_private_algorithm_in_fun_result                               [system] { header "__algorithm/in_fun_result.h" }
668*0fca6ea1SDimitry Andricmodule std_private_algorithm_in_in_out_result                            [system] { header "__algorithm/in_in_out_result.h" }
669*0fca6ea1SDimitry Andricmodule std_private_algorithm_in_in_result                                [system] { header "__algorithm/in_in_result.h" }
670*0fca6ea1SDimitry Andricmodule std_private_algorithm_in_out_out_result                           [system] { header "__algorithm/in_out_out_result.h" }
671*0fca6ea1SDimitry Andricmodule std_private_algorithm_in_out_result                               [system] { header "__algorithm/in_out_result.h" }
672*0fca6ea1SDimitry Andricmodule std_private_algorithm_includes                                    [system] { header "__algorithm/includes.h" }
673*0fca6ea1SDimitry Andricmodule std_private_algorithm_inplace_merge                               [system] { header "__algorithm/inplace_merge.h" }
674*0fca6ea1SDimitry Andricmodule std_private_algorithm_is_heap                                     [system] { header "__algorithm/is_heap.h" }
675*0fca6ea1SDimitry Andricmodule std_private_algorithm_is_heap_until                               [system] { header "__algorithm/is_heap_until.h" }
676*0fca6ea1SDimitry Andricmodule std_private_algorithm_is_partitioned                              [system] { header "__algorithm/is_partitioned.h" }
677*0fca6ea1SDimitry Andricmodule std_private_algorithm_is_permutation                              [system] { header "__algorithm/is_permutation.h" }
678*0fca6ea1SDimitry Andricmodule std_private_algorithm_is_sorted                                   [system] { header "__algorithm/is_sorted.h" }
679*0fca6ea1SDimitry Andricmodule std_private_algorithm_is_sorted_until                             [system] { header "__algorithm/is_sorted_until.h" }
680*0fca6ea1SDimitry Andricmodule std_private_algorithm_iter_swap                                   [system] { header "__algorithm/iter_swap.h" }
681*0fca6ea1SDimitry Andricmodule std_private_algorithm_iterator_operations                         [system] {
682*0fca6ea1SDimitry Andric  header "__algorithm/iterator_operations.h"
683*0fca6ea1SDimitry Andric  export *
684*0fca6ea1SDimitry Andric}
685*0fca6ea1SDimitry Andricmodule std_private_algorithm_lexicographical_compare                     [system] { header "__algorithm/lexicographical_compare.h" }
686*0fca6ea1SDimitry Andricmodule std_private_algorithm_lexicographical_compare_three_way           [system] { header "__algorithm/lexicographical_compare_three_way.h" }
687*0fca6ea1SDimitry Andricmodule std_private_algorithm_lower_bound                                 [system] { header "__algorithm/lower_bound.h" }
688*0fca6ea1SDimitry Andricmodule std_private_algorithm_make_heap                                   [system] { header "__algorithm/make_heap.h" }
689*0fca6ea1SDimitry Andricmodule std_private_algorithm_make_projected                              [system] { header "__algorithm/make_projected.h" }
690*0fca6ea1SDimitry Andricmodule std_private_algorithm_max                                         [system] { header "__algorithm/max.h" }
691*0fca6ea1SDimitry Andricmodule std_private_algorithm_max_element                                 [system] { header "__algorithm/max_element.h" }
692*0fca6ea1SDimitry Andricmodule std_private_algorithm_merge                                       [system] { header "__algorithm/merge.h" }
693*0fca6ea1SDimitry Andricmodule std_private_algorithm_min                                         [system] { header "__algorithm/min.h" }
694*0fca6ea1SDimitry Andricmodule std_private_algorithm_min_element                                 [system] { header "__algorithm/min_element.h" }
695*0fca6ea1SDimitry Andricmodule std_private_algorithm_min_max_result                              [system] { header "__algorithm/min_max_result.h" }
696*0fca6ea1SDimitry Andricmodule std_private_algorithm_minmax                                      [system] {
697*0fca6ea1SDimitry Andric  header "__algorithm/minmax.h"
698*0fca6ea1SDimitry Andric  export *
699*0fca6ea1SDimitry Andric}
700*0fca6ea1SDimitry Andricmodule std_private_algorithm_minmax_element                              [system] { header "__algorithm/minmax_element.h" }
701*0fca6ea1SDimitry Andricmodule std_private_algorithm_mismatch                                    [system] {
702*0fca6ea1SDimitry Andric  header "__algorithm/mismatch.h"
703*0fca6ea1SDimitry Andric  export std_private_algorithm_simd_utils
704*0fca6ea1SDimitry Andric  export std_private_iterator_aliasing_iterator
705*0fca6ea1SDimitry Andric}
706*0fca6ea1SDimitry Andricmodule std_private_algorithm_move                                        [system] { header "__algorithm/move.h" }
707*0fca6ea1SDimitry Andricmodule std_private_algorithm_move_backward                               [system] { header "__algorithm/move_backward.h" }
708*0fca6ea1SDimitry Andricmodule std_private_algorithm_next_permutation                            [system] { header "__algorithm/next_permutation.h" }
709*0fca6ea1SDimitry Andricmodule std_private_algorithm_none_of                                     [system] { header "__algorithm/none_of.h" }
710*0fca6ea1SDimitry Andricmodule std_private_algorithm_nth_element                                 [system] { header "__algorithm/nth_element.h" }
711*0fca6ea1SDimitry Andricmodule std_private_algorithm_partial_sort                                [system] { header "__algorithm/partial_sort.h" }
712*0fca6ea1SDimitry Andricmodule std_private_algorithm_partial_sort_copy                           [system] { header "__algorithm/partial_sort_copy.h" }
713*0fca6ea1SDimitry Andricmodule std_private_algorithm_partition                                   [system] { header "__algorithm/partition.h" }
714*0fca6ea1SDimitry Andricmodule std_private_algorithm_partition_copy                              [system] { header "__algorithm/partition_copy.h" }
715*0fca6ea1SDimitry Andricmodule std_private_algorithm_partition_point                             [system] { header "__algorithm/partition_point.h" }
716*0fca6ea1SDimitry Andricmodule std_private_algorithm_pop_heap                                    [system] { header "__algorithm/pop_heap.h" }
717*0fca6ea1SDimitry Andricmodule std_private_algorithm_prev_permutation                            [system] { header "__algorithm/prev_permutation.h" }
718*0fca6ea1SDimitry Andricmodule std_private_algorithm_pstl                                        [system] {
719*0fca6ea1SDimitry Andric  header "__algorithm/pstl.h"
720*0fca6ea1SDimitry Andric  export *
721*0fca6ea1SDimitry Andric}
722*0fca6ea1SDimitry Andricmodule std_private_algorithm_push_heap                                   [system] { header "__algorithm/push_heap.h" }
723*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_adjacent_find                        [system] { header "__algorithm/ranges_adjacent_find.h" }
724*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_all_of                               [system] { header "__algorithm/ranges_all_of.h" }
725*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_any_of                               [system] { header "__algorithm/ranges_any_of.h" }
726*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_binary_search                        [system] {
727*0fca6ea1SDimitry Andric  header "__algorithm/ranges_binary_search.h"
728*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
729*0fca6ea1SDimitry Andric}
730*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_clamp                                [system] {
731*0fca6ea1SDimitry Andric  header "__algorithm/ranges_clamp.h"
732*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
733*0fca6ea1SDimitry Andric}
734*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_contains                             [system] { header "__algorithm/ranges_contains.h" }
735*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_contains_subrange                    [system] { header "__algorithm/ranges_contains_subrange.h" }
736*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_copy                                 [system] {
737*0fca6ea1SDimitry Andric  header "__algorithm/ranges_copy.h"
738*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
739*0fca6ea1SDimitry Andric}
740*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_copy_backward                        [system] {
741*0fca6ea1SDimitry Andric  header "__algorithm/ranges_copy_backward.h"
742*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
743*0fca6ea1SDimitry Andric}
744*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_copy_if                              [system] {
745*0fca6ea1SDimitry Andric  header "__algorithm/ranges_copy_if.h"
746*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
747*0fca6ea1SDimitry Andric}
748*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_copy_n                               [system] {
749*0fca6ea1SDimitry Andric  header "__algorithm/ranges_copy_n.h"
750*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
751*0fca6ea1SDimitry Andric}
752*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_count                                [system] { header "__algorithm/ranges_count.h" }
753*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_count_if                             [system] { header "__algorithm/ranges_count_if.h" }
754*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_ends_with                            [system] { header "__algorithm/ranges_ends_with.h" }
755*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_equal                                [system] { header "__algorithm/ranges_equal.h" }
756*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_equal_range                          [system] {
757*0fca6ea1SDimitry Andric  header "__algorithm/ranges_equal_range.h"
758*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
759*0fca6ea1SDimitry Andric}
760*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_fill                                 [system] { header "__algorithm/ranges_fill.h" }
761*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_fill_n                               [system] { header "__algorithm/ranges_fill_n.h" }
762*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_find                                 [system] { header "__algorithm/ranges_find.h" }
763*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_find_end                             [system] { header "__algorithm/ranges_find_end.h" }
764*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_find_first_of                        [system] { header "__algorithm/ranges_find_first_of.h" }
765*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_find_if                              [system] { header "__algorithm/ranges_find_if.h" }
766*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_find_if_not                          [system] { header "__algorithm/ranges_find_if_not.h" }
767*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_find_last                            [system] { header "__algorithm/ranges_find_last.h" }
768*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_for_each                             [system] {
769*0fca6ea1SDimitry Andric  header "__algorithm/ranges_for_each.h"
770*0fca6ea1SDimitry Andric  export std_private_algorithm_in_fun_result
771*0fca6ea1SDimitry Andric}
772*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_for_each_n                           [system] {
773*0fca6ea1SDimitry Andric  header "__algorithm/ranges_for_each_n.h"
774*0fca6ea1SDimitry Andric  export std_private_algorithm_in_fun_result
775*0fca6ea1SDimitry Andric}
776*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_generate                             [system] { header "__algorithm/ranges_generate.h" }
777*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_generate_n                           [system] { header "__algorithm/ranges_generate_n.h" }
778*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_includes                             [system] {
779*0fca6ea1SDimitry Andric  header "__algorithm/ranges_includes.h"
780*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
781*0fca6ea1SDimitry Andric}
782*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_inplace_merge                        [system] {
783*0fca6ea1SDimitry Andric  header "__algorithm/ranges_inplace_merge.h"
784*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
785*0fca6ea1SDimitry Andric}
786*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_is_heap                              [system] {
787*0fca6ea1SDimitry Andric  header "__algorithm/ranges_is_heap.h"
788*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
789*0fca6ea1SDimitry Andric}
790*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_is_heap_until                        [system] {
791*0fca6ea1SDimitry Andric  header "__algorithm/ranges_is_heap_until.h"
792*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
793*0fca6ea1SDimitry Andric}
794*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_is_partitioned                       [system] { header "__algorithm/ranges_is_partitioned.h" }
795*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_is_permutation                       [system] { header "__algorithm/ranges_is_permutation.h" }
796*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_is_sorted                            [system] {
797*0fca6ea1SDimitry Andric  header "__algorithm/ranges_is_sorted.h"
798*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
799*0fca6ea1SDimitry Andric}
800*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_is_sorted_until                      [system] {
801*0fca6ea1SDimitry Andric  header "__algorithm/ranges_is_sorted_until.h"
802*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
803*0fca6ea1SDimitry Andric}
804*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_iterator_concept                     [system] { header "__algorithm/ranges_iterator_concept.h" }
805*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_lexicographical_compare              [system] {
806*0fca6ea1SDimitry Andric  header "__algorithm/ranges_lexicographical_compare.h"
807*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
808*0fca6ea1SDimitry Andric}
809*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_lower_bound                          [system] {
810*0fca6ea1SDimitry Andric  header "__algorithm/ranges_lower_bound.h"
811*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
812*0fca6ea1SDimitry Andric}
813*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_make_heap                            [system] {
814*0fca6ea1SDimitry Andric  header "__algorithm/ranges_make_heap.h"
815*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
816*0fca6ea1SDimitry Andric}
817*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_max                                  [system] {
818*0fca6ea1SDimitry Andric  header "__algorithm/ranges_max.h"
819*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
820*0fca6ea1SDimitry Andric}
821*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_max_element                          [system] {
822*0fca6ea1SDimitry Andric  header "__algorithm/ranges_max_element.h"
823*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
824*0fca6ea1SDimitry Andric}
825*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_merge                                [system] {
826*0fca6ea1SDimitry Andric  header "__algorithm/ranges_merge.h"
827*0fca6ea1SDimitry Andric  export std_private_algorithm_in_in_out_result
828*0fca6ea1SDimitry Andric}
829*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_min                                  [system] {
830*0fca6ea1SDimitry Andric  header "__algorithm/ranges_min.h"
831*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
832*0fca6ea1SDimitry Andric}
833*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_min_element                          [system] {
834*0fca6ea1SDimitry Andric  header "__algorithm/ranges_min_element.h"
835*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
836*0fca6ea1SDimitry Andric}
837*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_minmax                               [system] {
838*0fca6ea1SDimitry Andric  header "__algorithm/ranges_minmax.h"
839*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
840*0fca6ea1SDimitry Andric  export std_private_algorithm_min_max_result
841*0fca6ea1SDimitry Andric}
842*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_minmax_element                       [system] {
843*0fca6ea1SDimitry Andric  header "__algorithm/ranges_minmax_element.h"
844*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
845*0fca6ea1SDimitry Andric  export std_private_algorithm_min_max_result
846*0fca6ea1SDimitry Andric}
847*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_mismatch                             [system] {
848*0fca6ea1SDimitry Andric  header "__algorithm/ranges_mismatch.h"
849*0fca6ea1SDimitry Andric  export std_private_algorithm_in_in_result
850*0fca6ea1SDimitry Andric}
851*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_move                                 [system] {
852*0fca6ea1SDimitry Andric  header "__algorithm/ranges_move.h"
853*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
854*0fca6ea1SDimitry Andric}
855*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_move_backward                        [system] {
856*0fca6ea1SDimitry Andric  header "__algorithm/ranges_move_backward.h"
857*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
858*0fca6ea1SDimitry Andric}
859*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_next_permutation                     [system] {
860*0fca6ea1SDimitry Andric  header "__algorithm/ranges_next_permutation.h"
861*0fca6ea1SDimitry Andric  export std_private_algorithm_in_found_result
862*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
863*0fca6ea1SDimitry Andric}
864*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_none_of                              [system] { header "__algorithm/ranges_none_of.h" }
865*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_nth_element                          [system] {
866*0fca6ea1SDimitry Andric  header "__algorithm/ranges_nth_element.h"
867*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
868*0fca6ea1SDimitry Andric}
869*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_partial_sort                         [system] {
870*0fca6ea1SDimitry Andric  header "__algorithm/ranges_partial_sort.h"
871*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
872*0fca6ea1SDimitry Andric}
873*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_partial_sort_copy                    [system] {
874*0fca6ea1SDimitry Andric  header "__algorithm/ranges_partial_sort_copy.h"
875*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
876*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
877*0fca6ea1SDimitry Andric}
878*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_partition                            [system] { header "__algorithm/ranges_partition.h" }
879*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_partition_copy                       [system] { header "__algorithm/ranges_partition_copy.h" }
880*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_partition_point                      [system] { header "__algorithm/ranges_partition_point.h" }
881*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_pop_heap                             [system] {
882*0fca6ea1SDimitry Andric  header "__algorithm/ranges_pop_heap.h"
883*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
884*0fca6ea1SDimitry Andric}
885*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_prev_permutation                     [system] {
886*0fca6ea1SDimitry Andric  header "__algorithm/ranges_prev_permutation.h"
887*0fca6ea1SDimitry Andric  export std_private_algorithm_in_found_result
888*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
889*0fca6ea1SDimitry Andric}
890*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_push_heap                            [system] {
891*0fca6ea1SDimitry Andric  header "__algorithm/ranges_push_heap.h"
892*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
893*0fca6ea1SDimitry Andric}
894*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_remove                               [system] { header "__algorithm/ranges_remove.h" }
895*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_remove_copy                          [system] {
896*0fca6ea1SDimitry Andric  header "__algorithm/ranges_remove_copy.h"
897*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
898*0fca6ea1SDimitry Andric}
899*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_remove_copy_if                       [system] {
900*0fca6ea1SDimitry Andric  header "__algorithm/ranges_remove_copy_if.h"
901*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
902*0fca6ea1SDimitry Andric}
903*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_remove_if                            [system] { header "__algorithm/ranges_remove_if.h" }
904*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_replace                              [system] { header "__algorithm/ranges_replace.h" }
905*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_replace_copy                         [system] {
906*0fca6ea1SDimitry Andric  header "__algorithm/ranges_replace_copy.h"
907*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
908*0fca6ea1SDimitry Andric}
909*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_replace_copy_if                      [system] {
910*0fca6ea1SDimitry Andric  header "__algorithm/ranges_replace_copy_if.h"
911*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
912*0fca6ea1SDimitry Andric}
913*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_replace_if                           [system] { header "__algorithm/ranges_replace_if.h" }
914*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_reverse                              [system] { header "__algorithm/ranges_reverse.h" }
915*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_reverse_copy                         [system] {
916*0fca6ea1SDimitry Andric  header "__algorithm/ranges_reverse_copy.h"
917*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
918*0fca6ea1SDimitry Andric}
919*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_rotate                               [system] { header "__algorithm/ranges_rotate.h" }
920*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_rotate_copy                          [system] {
921*0fca6ea1SDimitry Andric  header "__algorithm/ranges_rotate_copy.h"
922*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
923*0fca6ea1SDimitry Andric}
924*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_sample                               [system] { header "__algorithm/ranges_sample.h" }
925*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_search                               [system] { header "__algorithm/ranges_search.h" }
926*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_search_n                             [system] { header "__algorithm/ranges_search_n.h" }
927*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_set_difference                       [system] {
928*0fca6ea1SDimitry Andric  header "__algorithm/ranges_set_difference.h"
929*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
930*0fca6ea1SDimitry Andric}
931*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_set_intersection                     [system] {
932*0fca6ea1SDimitry Andric  header "__algorithm/ranges_set_intersection.h"
933*0fca6ea1SDimitry Andric  export std_private_algorithm_in_in_out_result
934*0fca6ea1SDimitry Andric}
935*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_set_symmetric_difference             [system] {
936*0fca6ea1SDimitry Andric  header "__algorithm/ranges_set_symmetric_difference.h"
937*0fca6ea1SDimitry Andric  export std_private_algorithm_in_in_out_result
938*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
939*0fca6ea1SDimitry Andric}
940*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_set_union                            [system] {
941*0fca6ea1SDimitry Andric  header "__algorithm/ranges_set_union.h"
942*0fca6ea1SDimitry Andric  export std_private_algorithm_in_in_out_result
943*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
944*0fca6ea1SDimitry Andric}
945*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_shuffle                              [system] { header "__algorithm/ranges_shuffle.h" }
946*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_sort                                 [system] {
947*0fca6ea1SDimitry Andric  header "__algorithm/ranges_sort.h"
948*0fca6ea1SDimitry Andric  export std_private_algorithm_make_projected
949*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
950*0fca6ea1SDimitry Andric}
951*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_sort_heap                            [system] {
952*0fca6ea1SDimitry Andric  header "__algorithm/ranges_sort_heap.h"
953*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
954*0fca6ea1SDimitry Andric}
955*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_stable_partition                     [system] { header "__algorithm/ranges_stable_partition.h" }
956*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_stable_sort                          [system] {
957*0fca6ea1SDimitry Andric  header "__algorithm/ranges_stable_sort.h"
958*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
959*0fca6ea1SDimitry Andric}
960*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_starts_with                          [system] { header "__algorithm/ranges_starts_with.h" }
961*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_swap_ranges                          [system] {
962*0fca6ea1SDimitry Andric  header "__algorithm/ranges_swap_ranges.h"
963*0fca6ea1SDimitry Andric  export std_private_algorithm_in_in_result
964*0fca6ea1SDimitry Andric}
965*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_transform                            [system] {
966*0fca6ea1SDimitry Andric  header "__algorithm/ranges_transform.h"
967*0fca6ea1SDimitry Andric  export std_private_algorithm_in_in_out_result
968*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
969*0fca6ea1SDimitry Andric}
970*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_unique                               [system] { header "__algorithm/ranges_unique.h" }
971*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_unique_copy                          [system] {
972*0fca6ea1SDimitry Andric  header "__algorithm/ranges_unique_copy.h"
973*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
974*0fca6ea1SDimitry Andric}
975*0fca6ea1SDimitry Andricmodule std_private_algorithm_ranges_upper_bound                          [system] {
976*0fca6ea1SDimitry Andric  header "__algorithm/ranges_upper_bound.h"
977*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
978*0fca6ea1SDimitry Andric}
979*0fca6ea1SDimitry Andricmodule std_private_algorithm_remove                                      [system] { header "__algorithm/remove.h" }
980*0fca6ea1SDimitry Andricmodule std_private_algorithm_remove_copy                                 [system] { header "__algorithm/remove_copy.h" }
981*0fca6ea1SDimitry Andricmodule std_private_algorithm_remove_copy_if                              [system] { header "__algorithm/remove_copy_if.h" }
982*0fca6ea1SDimitry Andricmodule std_private_algorithm_remove_if                                   [system] { header "__algorithm/remove_if.h" }
983*0fca6ea1SDimitry Andricmodule std_private_algorithm_replace                                     [system] { header "__algorithm/replace.h" }
984*0fca6ea1SDimitry Andricmodule std_private_algorithm_replace_copy                                [system] { header "__algorithm/replace_copy.h" }
985*0fca6ea1SDimitry Andricmodule std_private_algorithm_replace_copy_if                             [system] { header "__algorithm/replace_copy_if.h" }
986*0fca6ea1SDimitry Andricmodule std_private_algorithm_replace_if                                  [system] { header "__algorithm/replace_if.h" }
987*0fca6ea1SDimitry Andricmodule std_private_algorithm_reverse                                     [system] { header "__algorithm/reverse.h" }
988*0fca6ea1SDimitry Andricmodule std_private_algorithm_reverse_copy                                [system] { header "__algorithm/reverse_copy.h" }
989*0fca6ea1SDimitry Andricmodule std_private_algorithm_rotate                                      [system] { header "__algorithm/rotate.h" }
990*0fca6ea1SDimitry Andricmodule std_private_algorithm_rotate_copy                                 [system] { header "__algorithm/rotate_copy.h" }
991*0fca6ea1SDimitry Andricmodule std_private_algorithm_sample                                      [system] { header "__algorithm/sample.h" }
992*0fca6ea1SDimitry Andricmodule std_private_algorithm_search                                      [system] { header "__algorithm/search.h" }
993*0fca6ea1SDimitry Andricmodule std_private_algorithm_search_n                                    [system] { header "__algorithm/search_n.h" }
994*0fca6ea1SDimitry Andricmodule std_private_algorithm_set_difference                              [system] { header "__algorithm/set_difference.h" }
995*0fca6ea1SDimitry Andricmodule std_private_algorithm_set_intersection                            [system] { header "__algorithm/set_intersection.h" }
996*0fca6ea1SDimitry Andricmodule std_private_algorithm_set_symmetric_difference                    [system] { header "__algorithm/set_symmetric_difference.h" }
997*0fca6ea1SDimitry Andricmodule std_private_algorithm_set_union                                   [system] { header "__algorithm/set_union.h" }
998*0fca6ea1SDimitry Andricmodule std_private_algorithm_shift_left                                  [system] { header "__algorithm/shift_left.h" }
999*0fca6ea1SDimitry Andricmodule std_private_algorithm_shift_right                                 [system] { header "__algorithm/shift_right.h" }
1000*0fca6ea1SDimitry Andricmodule std_private_algorithm_shuffle                                     [system] { header "__algorithm/shuffle.h" }
1001*0fca6ea1SDimitry Andricmodule std_private_algorithm_sift_down                                   [system] { header "__algorithm/sift_down.h" }
1002*0fca6ea1SDimitry Andricmodule std_private_algorithm_sort                                        [system] {
1003*0fca6ea1SDimitry Andric  header "__algorithm/sort.h"
1004*0fca6ea1SDimitry Andric  export std_private_debug_utils_strict_weak_ordering_check
1005*0fca6ea1SDimitry Andric}
1006*0fca6ea1SDimitry Andricmodule std_private_algorithm_simd_utils                                  [system] { header "__algorithm/simd_utils.h" }
1007*0fca6ea1SDimitry Andricmodule std_private_algorithm_sort_heap                                   [system] { header "__algorithm/sort_heap.h" }
1008*0fca6ea1SDimitry Andricmodule std_private_algorithm_stable_partition                            [system] { header "__algorithm/stable_partition.h" }
1009*0fca6ea1SDimitry Andricmodule std_private_algorithm_stable_sort                                 [system] { header "__algorithm/stable_sort.h" }
1010*0fca6ea1SDimitry Andricmodule std_private_algorithm_swap_ranges                                 [system] {
1011*0fca6ea1SDimitry Andric  header "__algorithm/swap_ranges.h"
1012*0fca6ea1SDimitry Andric  export std_private_algorithm_iterator_operations
1013*0fca6ea1SDimitry Andric}
1014*0fca6ea1SDimitry Andricmodule std_private_algorithm_three_way_comp_ref_type                     [system] { header "__algorithm/three_way_comp_ref_type.h" }
1015*0fca6ea1SDimitry Andricmodule std_private_algorithm_transform                                   [system] { header "__algorithm/transform.h" }
1016*0fca6ea1SDimitry Andricmodule std_private_algorithm_uniform_random_bit_generator_adaptor        [system] { header "__algorithm/uniform_random_bit_generator_adaptor.h" }
1017*0fca6ea1SDimitry Andricmodule std_private_algorithm_unique                                      [system] { header "__algorithm/unique.h" }
1018*0fca6ea1SDimitry Andricmodule std_private_algorithm_unique_copy                                 [system] { header "__algorithm/unique_copy.h" }
1019*0fca6ea1SDimitry Andricmodule std_private_algorithm_unwrap_iter                                 [system] {
1020*0fca6ea1SDimitry Andric  header "__algorithm/unwrap_iter.h"
1021*0fca6ea1SDimitry Andric  export std_private_iterator_iterator_traits
1022*0fca6ea1SDimitry Andric}
1023*0fca6ea1SDimitry Andricmodule std_private_algorithm_unwrap_range                                [system] {
1024*0fca6ea1SDimitry Andric  header "__algorithm/unwrap_range.h"
1025*0fca6ea1SDimitry Andric  export std_private_utility_pair
1026*0fca6ea1SDimitry Andric}
1027*0fca6ea1SDimitry Andricmodule std_private_algorithm_upper_bound                                 [system] { header "__algorithm/upper_bound.h" }
1028*0fca6ea1SDimitry Andric
1029*0fca6ea1SDimitry Andricmodule std_private_array_array_fwd [system] { header "__fwd/array.h" }
1030*0fca6ea1SDimitry Andric
1031*0fca6ea1SDimitry Andricmodule std_private_atomic_aliases             [system] {
1032*0fca6ea1SDimitry Andric  header "__atomic/aliases.h"
1033*0fca6ea1SDimitry Andric  export std_private_atomic_atomic
1034*0fca6ea1SDimitry Andric}
1035*0fca6ea1SDimitry Andricmodule std_private_atomic_atomic              [system] {
1036*0fca6ea1SDimitry Andric  header "__atomic/atomic.h"
1037*0fca6ea1SDimitry Andric  export std_private_atomic_atomic_base
1038*0fca6ea1SDimitry Andric}
1039*0fca6ea1SDimitry Andricmodule std_private_atomic_atomic_base         [system] { header "__atomic/atomic_base.h" }
1040*0fca6ea1SDimitry Andricmodule std_private_atomic_atomic_flag         [system] {
1041*0fca6ea1SDimitry Andric  header "__atomic/atomic_flag.h"
1042*0fca6ea1SDimitry Andric  export *
1043*0fca6ea1SDimitry Andric}
1044*0fca6ea1SDimitry Andricmodule std_private_atomic_atomic_init         [system] { header "__atomic/atomic_init.h" }
1045*0fca6ea1SDimitry Andricmodule std_private_atomic_atomic_lock_free    [system] { header "__atomic/atomic_lock_free.h" }
1046*0fca6ea1SDimitry Andricmodule std_private_atomic_atomic_ref          [system] { header "__atomic/atomic_ref.h" }
1047*0fca6ea1SDimitry Andricmodule std_private_atomic_atomic_sync         [system] {
1048*0fca6ea1SDimitry Andric  header "__atomic/atomic_sync.h"
1049*0fca6ea1SDimitry Andric  export std_private_atomic_to_gcc_order
1050*0fca6ea1SDimitry Andric}
1051*0fca6ea1SDimitry Andricmodule std_private_atomic_check_memory_order  [system] { header "__atomic/check_memory_order.h" }
1052*0fca6ea1SDimitry Andricmodule std_private_atomic_contention_t        [system] { header "__atomic/contention_t.h" }
1053*0fca6ea1SDimitry Andricmodule std_private_atomic_cxx_atomic_impl     [system] { header "__atomic/cxx_atomic_impl.h" }
1054*0fca6ea1SDimitry Andricmodule std_private_atomic_fence               [system] { header "__atomic/fence.h" }
1055*0fca6ea1SDimitry Andricmodule std_private_atomic_is_always_lock_free [system] { header "__atomic/is_always_lock_free.h" }
1056*0fca6ea1SDimitry Andricmodule std_private_atomic_kill_dependency     [system] { header "__atomic/kill_dependency.h" }
1057*0fca6ea1SDimitry Andricmodule std_private_atomic_memory_order        [system] { header "__atomic/memory_order.h" }
1058*0fca6ea1SDimitry Andricmodule std_private_atomic_to_gcc_order        [system] {
1059*0fca6ea1SDimitry Andric  header "__atomic/to_gcc_order.h"
1060*0fca6ea1SDimitry Andric  export std_private_atomic_memory_order
1061*0fca6ea1SDimitry Andric}
1062*0fca6ea1SDimitry Andric
1063*0fca6ea1SDimitry Andricmodule std_private_bit_bit_cast       [system] { header "__bit/bit_cast.h" }
1064*0fca6ea1SDimitry Andricmodule std_private_bit_bit_ceil       [system] { header "__bit/bit_ceil.h" }
1065*0fca6ea1SDimitry Andricmodule std_private_bit_bit_floor      [system] { header "__bit/bit_floor.h" }
1066*0fca6ea1SDimitry Andricmodule std_private_bit_bit_log2       [system] { header "__bit/bit_log2.h" }
1067*0fca6ea1SDimitry Andricmodule std_private_bit_bit_width      [system] { header "__bit/bit_width.h" }
1068*0fca6ea1SDimitry Andricmodule std_private_bit_blsr           [system] { header "__bit/blsr.h" }
1069*0fca6ea1SDimitry Andricmodule std_private_bit_byteswap       [system] { header "__bit/byteswap.h" }
1070*0fca6ea1SDimitry Andricmodule std_private_bit_countl         [system] { header "__bit/countl.h" }
1071*0fca6ea1SDimitry Andricmodule std_private_bit_countr         [system] { header "__bit/countr.h" }
1072*0fca6ea1SDimitry Andricmodule std_private_bit_endian         [system] { header "__bit/endian.h" }
1073*0fca6ea1SDimitry Andricmodule std_private_bit_has_single_bit [system] { header "__bit/has_single_bit.h" }
1074*0fca6ea1SDimitry Andricmodule std_private_bit_invert_if      [system] { header "__bit/invert_if.h" }
1075*0fca6ea1SDimitry Andricmodule std_private_bit_popcount       [system] { header "__bit/popcount.h" }
1076*0fca6ea1SDimitry Andricmodule std_private_bit_rotate         [system] { header "__bit/rotate.h" }
1077*0fca6ea1SDimitry Andric
1078*0fca6ea1SDimitry Andricmodule std_private_charconv_chars_format            [system] { header "__charconv/chars_format.h" }
1079*0fca6ea1SDimitry Andricmodule std_private_charconv_from_chars_integral     [system] { header "__charconv/from_chars_integral.h" }
1080*0fca6ea1SDimitry Andricmodule std_private_charconv_from_chars_result       [system] { header "__charconv/from_chars_result.h" }
1081*0fca6ea1SDimitry Andricmodule std_private_charconv_tables                  [system] { header "__charconv/tables.h" }
1082*0fca6ea1SDimitry Andricmodule std_private_charconv_to_chars                [system] { header "__charconv/to_chars.h" }
1083*0fca6ea1SDimitry Andricmodule std_private_charconv_to_chars_base_10        [system] { header "__charconv/to_chars_base_10.h" }
1084*0fca6ea1SDimitry Andricmodule std_private_charconv_to_chars_floating_point [system] { header "__charconv/to_chars_floating_point.h" }
1085*0fca6ea1SDimitry Andricmodule std_private_charconv_to_chars_integral       [system] {
1086*0fca6ea1SDimitry Andric  header "__charconv/to_chars_integral.h"
1087*0fca6ea1SDimitry Andric  export std_private_charconv_traits
1088*0fca6ea1SDimitry Andric}
1089*0fca6ea1SDimitry Andricmodule std_private_charconv_to_chars_result         [system] {
1090*0fca6ea1SDimitry Andric  header "__charconv/to_chars_result.h"
1091*0fca6ea1SDimitry Andric  export *
1092*0fca6ea1SDimitry Andric}
1093*0fca6ea1SDimitry Andricmodule std_private_charconv_traits                  [system] { header "__charconv/traits.h" }
1094*0fca6ea1SDimitry Andric
1095*0fca6ea1SDimitry Andricmodule std_private_chrono_calendar               [system] { header "__chrono/calendar.h" }
1096*0fca6ea1SDimitry Andricmodule std_private_chrono_concepts               [system] { header "__chrono/concepts.h" }
1097*0fca6ea1SDimitry Andricmodule std_private_chrono_convert_to_timespec    [system] { header "__chrono/convert_to_timespec.h" }
1098*0fca6ea1SDimitry Andricmodule std_private_chrono_convert_to_tm          [system] { header "__chrono/convert_to_tm.h" }
1099*0fca6ea1SDimitry Andricmodule std_private_chrono_day                    [system] { header "__chrono/day.h" }
1100*0fca6ea1SDimitry Andricmodule std_private_chrono_duration               [system] {
1101*0fca6ea1SDimitry Andric  header "__chrono/duration.h"
1102*0fca6ea1SDimitry Andric  export std_private_type_traits_is_convertible
1103*0fca6ea1SDimitry Andric}
1104*0fca6ea1SDimitry Andricmodule std_private_chrono_exception              [system] { header "__chrono/exception.h" }
1105*0fca6ea1SDimitry Andricmodule std_private_chrono_file_clock             [system] { header "__chrono/file_clock.h" }
1106*0fca6ea1SDimitry Andricmodule std_private_chrono_formatter              [system] {
1107*0fca6ea1SDimitry Andric  header "__chrono/formatter.h"
1108*0fca6ea1SDimitry Andric}
1109*0fca6ea1SDimitry Andricmodule std_private_chrono_hh_mm_ss               [system] { header "__chrono/hh_mm_ss.h" }
1110*0fca6ea1SDimitry Andricmodule std_private_chrono_high_resolution_clock  [system] {
1111*0fca6ea1SDimitry Andric  header "__chrono/high_resolution_clock.h"
1112*0fca6ea1SDimitry Andric  export std_private_chrono_steady_clock
1113*0fca6ea1SDimitry Andric  export std_private_chrono_system_clock
1114*0fca6ea1SDimitry Andric}
1115*0fca6ea1SDimitry Andricmodule std_private_chrono_leap_second            [system] { header "__chrono/leap_second.h" }
1116*0fca6ea1SDimitry Andricmodule std_private_chrono_literals               [system] { header "__chrono/literals.h" }
1117*0fca6ea1SDimitry Andricmodule std_private_chrono_local_info             [system] {
1118*0fca6ea1SDimitry Andric  header "__chrono/local_info.h"
1119*0fca6ea1SDimitry Andric  export std_private_chrono_sys_info
1120*0fca6ea1SDimitry Andric}
1121*0fca6ea1SDimitry Andricmodule std_private_chrono_month                  [system] { header "__chrono/month.h" }
1122*0fca6ea1SDimitry Andricmodule std_private_chrono_month_weekday          [system] { header "__chrono/month_weekday.h" }
1123*0fca6ea1SDimitry Andricmodule std_private_chrono_monthday               [system] { header "__chrono/monthday.h" }
1124*0fca6ea1SDimitry Andricmodule std_private_chrono_ostream                [system] {
1125*0fca6ea1SDimitry Andric  header "__chrono/ostream.h"
1126*0fca6ea1SDimitry Andric}
1127*0fca6ea1SDimitry Andricmodule std_private_chrono_parser_std_format_spec [system] {
1128*0fca6ea1SDimitry Andric  header "__chrono/parser_std_format_spec.h"
1129*0fca6ea1SDimitry Andric}
1130*0fca6ea1SDimitry Andricmodule std_private_chrono_statically_widen       [system] { header "__chrono/statically_widen.h" }
1131*0fca6ea1SDimitry Andricmodule std_private_chrono_steady_clock           [system] {
1132*0fca6ea1SDimitry Andric  header "__chrono/steady_clock.h"
1133*0fca6ea1SDimitry Andric  export std_private_chrono_time_point
1134*0fca6ea1SDimitry Andric}
1135*0fca6ea1SDimitry Andricmodule std_private_chrono_time_zone              [system] {
1136*0fca6ea1SDimitry Andric  header "__chrono/time_zone.h"
1137*0fca6ea1SDimitry Andric  export std_private_memory_unique_ptr
1138*0fca6ea1SDimitry Andric}
1139*0fca6ea1SDimitry Andricmodule std_private_chrono_time_zone_link         [system] {
1140*0fca6ea1SDimitry Andric  header "__chrono/time_zone_link.h"
1141*0fca6ea1SDimitry Andric}
1142*0fca6ea1SDimitry Andricmodule std_private_chrono_sys_info               [system] {
1143*0fca6ea1SDimitry Andric  header "__chrono/sys_info.h"
1144*0fca6ea1SDimitry Andric}
1145*0fca6ea1SDimitry Andricmodule std_private_chrono_system_clock           [system] {
1146*0fca6ea1SDimitry Andric  header "__chrono/system_clock.h"
1147*0fca6ea1SDimitry Andric  export std_private_chrono_time_point
1148*0fca6ea1SDimitry Andric}
1149*0fca6ea1SDimitry Andricmodule std_private_chrono_tzdb                   [system] {
1150*0fca6ea1SDimitry Andric  header "__chrono/tzdb.h"
1151*0fca6ea1SDimitry Andric  export *
1152*0fca6ea1SDimitry Andric}
1153*0fca6ea1SDimitry Andricmodule std_private_chrono_tzdb_list              [system] {
1154*0fca6ea1SDimitry Andric  header "__chrono/tzdb_list.h"
1155*0fca6ea1SDimitry Andric  export *
1156*0fca6ea1SDimitry Andric}
1157*0fca6ea1SDimitry Andricmodule std_private_chrono_time_point             [system] { header "__chrono/time_point.h" }
1158*0fca6ea1SDimitry Andricmodule std_private_chrono_weekday                [system] { header "__chrono/weekday.h" }
1159*0fca6ea1SDimitry Andricmodule std_private_chrono_year                   [system] { header "__chrono/year.h" }
1160*0fca6ea1SDimitry Andricmodule std_private_chrono_year_month             [system] { header "__chrono/year_month.h" }
1161*0fca6ea1SDimitry Andricmodule std_private_chrono_year_month_day         [system] { header "__chrono/year_month_day.h" }
1162*0fca6ea1SDimitry Andricmodule std_private_chrono_year_month_weekday     [system] { header "__chrono/year_month_weekday.h" }
1163*0fca6ea1SDimitry Andricmodule std_private_chrono_zoned_time             [system] { header "__chrono/zoned_time.h" }
1164*0fca6ea1SDimitry Andric
1165*0fca6ea1SDimitry Andricmodule std_private_compare_common_comparison_category     [system] { header "__compare/common_comparison_category.h" }
1166*0fca6ea1SDimitry Andricmodule std_private_compare_compare_partial_order_fallback [system] { header "__compare/compare_partial_order_fallback.h" }
1167*0fca6ea1SDimitry Andricmodule std_private_compare_compare_strong_order_fallback  [system] { header "__compare/compare_strong_order_fallback.h" }
1168*0fca6ea1SDimitry Andricmodule std_private_compare_compare_three_way              [system] { header "__compare/compare_three_way.h" }
1169*0fca6ea1SDimitry Andricmodule std_private_compare_compare_three_way_result       [system] { header "__compare/compare_three_way_result.h" }
1170*0fca6ea1SDimitry Andricmodule std_private_compare_compare_weak_order_fallback    [system] { header "__compare/compare_weak_order_fallback.h" }
1171*0fca6ea1SDimitry Andricmodule std_private_compare_is_eq                          [system] { header "__compare/is_eq.h" }
1172*0fca6ea1SDimitry Andricmodule std_private_compare_ordering                       [system] { header "__compare/ordering.h" }
1173*0fca6ea1SDimitry Andricmodule std_private_compare_partial_order                  [system] { header "__compare/partial_order.h" }
1174*0fca6ea1SDimitry Andricmodule std_private_compare_strong_order                   [system] { header "__compare/strong_order.h" }
1175*0fca6ea1SDimitry Andricmodule std_private_compare_synth_three_way                [system] { header "__compare/synth_three_way.h" }
1176*0fca6ea1SDimitry Andricmodule std_private_compare_three_way_comparable           [system] { header "__compare/three_way_comparable.h" }
1177*0fca6ea1SDimitry Andricmodule std_private_compare_weak_order                     [system] { header "__compare/weak_order.h" }
1178*0fca6ea1SDimitry Andric
1179*0fca6ea1SDimitry Andricmodule std_private_complex_complex_fwd            [system] { header "__fwd/complex.h" }
1180*0fca6ea1SDimitry Andric
1181*0fca6ea1SDimitry Andricmodule std_private_concepts_arithmetic            [system] { header "__concepts/arithmetic.h" }
1182*0fca6ea1SDimitry Andricmodule std_private_concepts_assignable            [system] { header "__concepts/assignable.h" }
1183*0fca6ea1SDimitry Andricmodule std_private_concepts_boolean_testable      [system] { header "__concepts/boolean_testable.h" }
1184*0fca6ea1SDimitry Andricmodule std_private_concepts_class_or_enum         [system] { header "__concepts/class_or_enum.h" }
1185*0fca6ea1SDimitry Andricmodule std_private_concepts_common_reference_with [system] { header "__concepts/common_reference_with.h" }
1186*0fca6ea1SDimitry Andricmodule std_private_concepts_common_with           [system] { header "__concepts/common_with.h" }
1187*0fca6ea1SDimitry Andricmodule std_private_concepts_constructible         [system] {
1188*0fca6ea1SDimitry Andric  header "__concepts/constructible.h"
1189*0fca6ea1SDimitry Andric  export std_private_concepts_destructible
1190*0fca6ea1SDimitry Andric}
1191*0fca6ea1SDimitry Andricmodule std_private_concepts_convertible_to        [system] { header "__concepts/convertible_to.h" }
1192*0fca6ea1SDimitry Andricmodule std_private_concepts_copyable              [system] { header "__concepts/copyable.h" }
1193*0fca6ea1SDimitry Andricmodule std_private_concepts_derived_from          [system] { header "__concepts/derived_from.h" }
1194*0fca6ea1SDimitry Andricmodule std_private_concepts_destructible          [system] {
1195*0fca6ea1SDimitry Andric  header "__concepts/destructible.h"
1196*0fca6ea1SDimitry Andric  export std_private_type_traits_is_nothrow_destructible
1197*0fca6ea1SDimitry Andric}
1198*0fca6ea1SDimitry Andricmodule std_private_concepts_different_from        [system] { header "__concepts/different_from.h" }
1199*0fca6ea1SDimitry Andricmodule std_private_concepts_equality_comparable   [system] {
1200*0fca6ea1SDimitry Andric  header "__concepts/equality_comparable.h"
1201*0fca6ea1SDimitry Andric  export std_private_type_traits_common_reference
1202*0fca6ea1SDimitry Andric}
1203*0fca6ea1SDimitry Andricmodule std_private_concepts_invocable             [system] { header "__concepts/invocable.h" }
1204*0fca6ea1SDimitry Andricmodule std_private_concepts_movable               [system] {
1205*0fca6ea1SDimitry Andric  header "__concepts/movable.h"
1206*0fca6ea1SDimitry Andric  export std_private_type_traits_is_object
1207*0fca6ea1SDimitry Andric}
1208*0fca6ea1SDimitry Andricmodule std_private_concepts_predicate             [system] { header "__concepts/predicate.h" }
1209*0fca6ea1SDimitry Andricmodule std_private_concepts_regular               [system] { header "__concepts/regular.h" }
1210*0fca6ea1SDimitry Andricmodule std_private_concepts_relation              [system] { header "__concepts/relation.h" }
1211*0fca6ea1SDimitry Andricmodule std_private_concepts_same_as               [system] {
1212*0fca6ea1SDimitry Andric  header "__concepts/same_as.h"
1213*0fca6ea1SDimitry Andric  export std_private_type_traits_is_same
1214*0fca6ea1SDimitry Andric}
1215*0fca6ea1SDimitry Andricmodule std_private_concepts_semiregular           [system] { header "__concepts/semiregular.h" }
1216*0fca6ea1SDimitry Andricmodule std_private_concepts_swappable             [system] { header "__concepts/swappable.h" }
1217*0fca6ea1SDimitry Andricmodule std_private_concepts_totally_ordered       [system] { header "__concepts/totally_ordered.h" }
1218*0fca6ea1SDimitry Andric
1219*0fca6ea1SDimitry Andricmodule std_private_condition_variable_condition_variable [system] {
1220*0fca6ea1SDimitry Andric  header "__condition_variable/condition_variable.h"
1221*0fca6ea1SDimitry Andric  export *
1222*0fca6ea1SDimitry Andric}
1223*0fca6ea1SDimitry Andric
1224*0fca6ea1SDimitry Andricmodule std_private_coroutine_coroutine_handle      [system] { header "__coroutine/coroutine_handle.h" }
1225*0fca6ea1SDimitry Andricmodule std_private_coroutine_coroutine_traits      [system] { header "__coroutine/coroutine_traits.h" }
1226*0fca6ea1SDimitry Andricmodule std_private_coroutine_noop_coroutine_handle [system] { header "__coroutine/noop_coroutine_handle.h" }
1227*0fca6ea1SDimitry Andricmodule std_private_coroutine_trivial_awaitables    [system] { header "__coroutine/trivial_awaitables.h" }
1228*0fca6ea1SDimitry Andric
1229*0fca6ea1SDimitry Andricmodule std_private_debug_utils_randomize_range            [system] { header "__debug_utils/randomize_range.h" }
1230*0fca6ea1SDimitry Andricmodule std_private_debug_utils_sanitizers                 [system] { header "__debug_utils/sanitizers.h" }
1231*0fca6ea1SDimitry Andricmodule std_private_debug_utils_strict_weak_ordering_check [system] {
1232*0fca6ea1SDimitry Andric  header "__debug_utils/strict_weak_ordering_check.h"
1233*0fca6ea1SDimitry Andric  export std_private_type_traits_is_constant_evaluated
1234*0fca6ea1SDimitry Andric}
1235*0fca6ea1SDimitry Andric
1236*0fca6ea1SDimitry Andricmodule std_private_deque_fwd [system] { header "__fwd/deque.h" }
1237*0fca6ea1SDimitry Andric
1238*0fca6ea1SDimitry Andricmodule std_private_exception_exception        [system] { header "__exception/exception.h" }
1239*0fca6ea1SDimitry Andricmodule std_private_exception_exception_ptr    [system] {
1240*0fca6ea1SDimitry Andric  header "__exception/exception_ptr.h"
1241*0fca6ea1SDimitry Andric  export std_private_exception_operations
1242*0fca6ea1SDimitry Andric}
1243*0fca6ea1SDimitry Andricmodule std_private_exception_nested_exception [system] { header "__exception/nested_exception.h" }
1244*0fca6ea1SDimitry Andricmodule std_private_exception_operations       [system] { header "__exception/operations.h" }
1245*0fca6ea1SDimitry Andricmodule std_private_exception_terminate        [system] { header "__exception/terminate.h" }
1246*0fca6ea1SDimitry Andric
1247*0fca6ea1SDimitry Andricmodule std_private_expected_bad_expected_access [system] { header "__expected/bad_expected_access.h" }
1248*0fca6ea1SDimitry Andricmodule std_private_expected_expected            [system] { header "__expected/expected.h" }
1249*0fca6ea1SDimitry Andricmodule std_private_expected_unexpect            [system] { header "__expected/unexpect.h" }
1250*0fca6ea1SDimitry Andricmodule std_private_expected_unexpected          [system] { header "__expected/unexpected.h" }
1251*0fca6ea1SDimitry Andric
1252*0fca6ea1SDimitry Andricmodule std_private_filesystem_copy_options                 [system] { header "__filesystem/copy_options.h" }
1253*0fca6ea1SDimitry Andricmodule std_private_filesystem_directory_entry              [system] {
1254*0fca6ea1SDimitry Andric  header "__filesystem/directory_entry.h"
1255*0fca6ea1SDimitry Andric  export *
1256*0fca6ea1SDimitry Andric}
1257*0fca6ea1SDimitry Andricmodule std_private_filesystem_directory_iterator           [system] {
1258*0fca6ea1SDimitry Andric  header "__filesystem/directory_iterator.h"
1259*0fca6ea1SDimitry Andric  export *
1260*0fca6ea1SDimitry Andric}
1261*0fca6ea1SDimitry Andricmodule std_private_filesystem_directory_options            [system] { header "__filesystem/directory_options.h" }
1262*0fca6ea1SDimitry Andricmodule std_private_filesystem_file_status                  [system] { header "__filesystem/file_status.h" }
1263*0fca6ea1SDimitry Andricmodule std_private_filesystem_file_time_type               [system] { header "__filesystem/file_time_type.h" }
1264*0fca6ea1SDimitry Andricmodule std_private_filesystem_file_type                    [system] { header "__filesystem/file_type.h" }
1265*0fca6ea1SDimitry Andricmodule std_private_filesystem_filesystem_error             [system] {
1266*0fca6ea1SDimitry Andric  header "__filesystem/filesystem_error.h"
1267*0fca6ea1SDimitry Andric  export *
1268*0fca6ea1SDimitry Andric}
1269*0fca6ea1SDimitry Andricmodule std_private_filesystem_operations                   [system] { header "__filesystem/operations.h" }
1270*0fca6ea1SDimitry Andricmodule std_private_filesystem_path                         [system] {
1271*0fca6ea1SDimitry Andric  header "__filesystem/path.h"
1272*0fca6ea1SDimitry Andric  export *
1273*0fca6ea1SDimitry Andric}
1274*0fca6ea1SDimitry Andricmodule std_private_filesystem_path_iterator                [system] { header "__filesystem/path_iterator.h" }
1275*0fca6ea1SDimitry Andricmodule std_private_filesystem_perm_options                 [system] { header "__filesystem/perm_options.h" }
1276*0fca6ea1SDimitry Andricmodule std_private_filesystem_perms                        [system] { header "__filesystem/perms.h" }
1277*0fca6ea1SDimitry Andricmodule std_private_filesystem_recursive_directory_iterator [system] {
1278*0fca6ea1SDimitry Andric  header "__filesystem/recursive_directory_iterator.h"
1279*0fca6ea1SDimitry Andric  export *
1280*0fca6ea1SDimitry Andric}
1281*0fca6ea1SDimitry Andricmodule std_private_filesystem_space_info                   [system] { header "__filesystem/space_info.h" }
1282*0fca6ea1SDimitry Andricmodule std_private_filesystem_u8path                       [system] { header "__filesystem/u8path.h" }
1283*0fca6ea1SDimitry Andric
1284*0fca6ea1SDimitry Andricmodule std_private_format_buffer                          [system] { header "__format/buffer.h" }
1285*0fca6ea1SDimitry Andricmodule std_private_format_concepts                        [system] { header "__format/concepts.h" }
1286*0fca6ea1SDimitry Andricmodule std_private_format_container_adaptor               [system] { header "__format/container_adaptor.h" }
1287*0fca6ea1SDimitry Andricmodule std_private_format_enable_insertable               [system] { header "__format/enable_insertable.h" }
1288*0fca6ea1SDimitry Andricmodule std_private_format_escaped_output_table            [system] { header "__format/escaped_output_table.h" }
1289*0fca6ea1SDimitry Andricmodule std_private_format_extended_grapheme_cluster_table [system] { header "__format/extended_grapheme_cluster_table.h" }
1290*0fca6ea1SDimitry Andricmodule std_private_format_format_arg                      [system] { header "__format/format_arg.h" }
1291*0fca6ea1SDimitry Andricmodule std_private_format_format_arg_store                [system] { header "__format/format_arg_store.h" }
1292*0fca6ea1SDimitry Andricmodule std_private_format_format_args                     [system] { header "__format/format_args.h" }
1293*0fca6ea1SDimitry Andricmodule std_private_format_format_context                  [system] {
1294*0fca6ea1SDimitry Andric  header "__format/format_context.h"
1295*0fca6ea1SDimitry Andric  export *
1296*0fca6ea1SDimitry Andric}
1297*0fca6ea1SDimitry Andricmodule std_private_format_format_error                    [system] { header "__format/format_error.h" }
1298*0fca6ea1SDimitry Andricmodule std_private_format_format_functions                [system] {
1299*0fca6ea1SDimitry Andric  header "__format/format_functions.h"
1300*0fca6ea1SDimitry Andric  export std_string
1301*0fca6ea1SDimitry Andric}
1302*0fca6ea1SDimitry Andricmodule std_private_format_fwd                             [system] { header "__fwd/format.h" }
1303*0fca6ea1SDimitry Andricmodule std_private_format_format_parse_context            [system] { header "__format/format_parse_context.h" }
1304*0fca6ea1SDimitry Andricmodule std_private_format_format_string                   [system] { header "__format/format_string.h" }
1305*0fca6ea1SDimitry Andricmodule std_private_format_format_to_n_result              [system] {
1306*0fca6ea1SDimitry Andric  header "__format/format_to_n_result.h"
1307*0fca6ea1SDimitry Andric  export std_private_iterator_incrementable_traits
1308*0fca6ea1SDimitry Andric}
1309*0fca6ea1SDimitry Andricmodule std_private_format_formatter                       [system] { header "__format/formatter.h" }
1310*0fca6ea1SDimitry Andricmodule std_private_format_formatter_bool                  [system] { header "__format/formatter_bool.h" }
1311*0fca6ea1SDimitry Andricmodule std_private_format_formatter_char                  [system] { header "__format/formatter_char.h" }
1312*0fca6ea1SDimitry Andricmodule std_private_format_formatter_floating_point        [system] { header "__format/formatter_floating_point.h" }
1313*0fca6ea1SDimitry Andricmodule std_private_format_formatter_integer               [system] { header "__format/formatter_integer.h" }
1314*0fca6ea1SDimitry Andricmodule std_private_format_formatter_integral              [system] { header "__format/formatter_integral.h" }
1315*0fca6ea1SDimitry Andricmodule std_private_format_formatter_output                [system] { header "__format/formatter_output.h" }
1316*0fca6ea1SDimitry Andricmodule std_private_format_formatter_pointer               [system] { header "__format/formatter_pointer.h" }
1317*0fca6ea1SDimitry Andricmodule std_private_format_formatter_string                [system] { header "__format/formatter_string.h" }
1318*0fca6ea1SDimitry Andricmodule std_private_format_formatter_tuple                 [system] { header "__format/formatter_tuple.h" }
1319*0fca6ea1SDimitry Andricmodule std_private_format_indic_conjunct_break_table      [system] { header "__format/indic_conjunct_break_table.h" }
1320*0fca6ea1SDimitry Andricmodule std_private_format_parser_std_format_spec          [system] { header "__format/parser_std_format_spec.h" }
1321*0fca6ea1SDimitry Andricmodule std_private_format_range_default_formatter         [system] { header "__format/range_default_formatter.h" }
1322*0fca6ea1SDimitry Andricmodule std_private_format_range_formatter                 [system] { header "__format/range_formatter.h" }
1323*0fca6ea1SDimitry Andricmodule std_private_format_unicode                         [system] {
1324*0fca6ea1SDimitry Andric  header "__format/unicode.h"
1325*0fca6ea1SDimitry Andric  export std_private_format_extended_grapheme_cluster_table
1326*0fca6ea1SDimitry Andric  export std_private_format_indic_conjunct_break_table
1327*0fca6ea1SDimitry Andric}
1328*0fca6ea1SDimitry Andricmodule std_private_format_width_estimation_table          [system] { header "__format/width_estimation_table.h" }
1329*0fca6ea1SDimitry Andricmodule std_private_format_write_escaped                   [system] { header "__format/write_escaped.h" }
1330*0fca6ea1SDimitry Andric
1331*0fca6ea1SDimitry Andricmodule std_private_functional_binary_function            [system] { header "__functional/binary_function.h" }
1332*0fca6ea1SDimitry Andricmodule std_private_functional_binary_negate              [system] { header "__functional/binary_negate.h" }
1333*0fca6ea1SDimitry Andricmodule std_private_functional_bind                       [system] { header "__functional/bind.h" }
1334*0fca6ea1SDimitry Andricmodule std_private_functional_bind_back                  [system] { header "__functional/bind_back.h" }
1335*0fca6ea1SDimitry Andricmodule std_private_functional_bind_front                 [system] { header "__functional/bind_front.h" }
1336*0fca6ea1SDimitry Andricmodule std_private_functional_binder1st                  [system] { header "__functional/binder1st.h" }
1337*0fca6ea1SDimitry Andricmodule std_private_functional_binder2nd                  [system] { header "__functional/binder2nd.h" }
1338*0fca6ea1SDimitry Andricmodule std_private_functional_boyer_moore_searcher       [system] {
1339*0fca6ea1SDimitry Andric  header "__functional/boyer_moore_searcher.h"
1340*0fca6ea1SDimitry Andric  export std_private_memory_shared_ptr
1341*0fca6ea1SDimitry Andric}
1342*0fca6ea1SDimitry Andricmodule std_private_functional_compose                    [system] {
1343*0fca6ea1SDimitry Andric  header "__functional/compose.h"
1344*0fca6ea1SDimitry Andric  export std_private_functional_perfect_forward
1345*0fca6ea1SDimitry Andric}
1346*0fca6ea1SDimitry Andricmodule std_private_functional_default_searcher           [system] { header "__functional/default_searcher.h" }
1347*0fca6ea1SDimitry Andricmodule std_private_functional_function                   [system] { header "__functional/function.h" }
1348*0fca6ea1SDimitry Andricmodule std_private_functional_hash                       [system] {
1349*0fca6ea1SDimitry Andric  header "__functional/hash.h"
1350*0fca6ea1SDimitry Andric  export std_cstdint
1351*0fca6ea1SDimitry Andric  export std_private_type_traits_underlying_type
1352*0fca6ea1SDimitry Andric  export std_private_utility_pair
1353*0fca6ea1SDimitry Andric}
1354*0fca6ea1SDimitry Andricmodule std_private_functional_fwd                        [system] { header "__fwd/functional.h" }
1355*0fca6ea1SDimitry Andricmodule std_private_functional_identity                   [system] { header "__functional/identity.h" }
1356*0fca6ea1SDimitry Andricmodule std_private_functional_invoke                     [system] {
1357*0fca6ea1SDimitry Andric  header "__functional/invoke.h"
1358*0fca6ea1SDimitry Andric  export *
1359*0fca6ea1SDimitry Andric}
1360*0fca6ea1SDimitry Andricmodule std_private_functional_is_transparent             [system] { header "__functional/is_transparent.h" }
1361*0fca6ea1SDimitry Andricmodule std_private_functional_mem_fn                     [system] { header "__functional/mem_fn.h" }
1362*0fca6ea1SDimitry Andricmodule std_private_functional_mem_fun_ref                [system] { header "__functional/mem_fun_ref.h" }
1363*0fca6ea1SDimitry Andricmodule std_private_functional_not_fn                     [system] {
1364*0fca6ea1SDimitry Andric  header "__functional/not_fn.h"
1365*0fca6ea1SDimitry Andric  export std_private_functional_perfect_forward
1366*0fca6ea1SDimitry Andric}
1367*0fca6ea1SDimitry Andricmodule std_private_functional_operations                 [system] { header "__functional/operations.h" }
1368*0fca6ea1SDimitry Andricmodule std_private_functional_perfect_forward            [system] {
1369*0fca6ea1SDimitry Andric  header "__functional/perfect_forward.h"
1370*0fca6ea1SDimitry Andric  export *
1371*0fca6ea1SDimitry Andric}
1372*0fca6ea1SDimitry Andricmodule std_private_functional_pointer_to_binary_function [system] { header "__functional/pointer_to_binary_function.h" }
1373*0fca6ea1SDimitry Andricmodule std_private_functional_pointer_to_unary_function  [system] { header "__functional/pointer_to_unary_function.h" }
1374*0fca6ea1SDimitry Andricmodule std_private_functional_ranges_operations          [system] { header "__functional/ranges_operations.h" }
1375*0fca6ea1SDimitry Andricmodule std_private_functional_reference_wrapper          [system] { header "__functional/reference_wrapper.h" }
1376*0fca6ea1SDimitry Andricmodule std_private_functional_unary_function             [system] { header "__functional/unary_function.h" }
1377*0fca6ea1SDimitry Andricmodule std_private_functional_unary_negate               [system] { header "__functional/unary_negate.h" }
1378*0fca6ea1SDimitry Andricmodule std_private_functional_weak_result_type           [system] { header "__functional/weak_result_type.h" }
1379*0fca6ea1SDimitry Andric
1380*0fca6ea1SDimitry Andricmodule std_private_ios_fpos [system] { header "__ios/fpos.h" }
1381*0fca6ea1SDimitry Andric
1382*0fca6ea1SDimitry Andricmodule std_private_iosfwd_fstream_fwd   [system] { header "__fwd/fstream.h" }
1383*0fca6ea1SDimitry Andricmodule std_private_iosfwd_ios_fwd       [system] { header "__fwd/ios.h" }
1384*0fca6ea1SDimitry Andricmodule std_private_iosfwd_istream_fwd   [system] { header "__fwd/istream.h" }
1385*0fca6ea1SDimitry Andricmodule std_private_iosfwd_ostream_fwd   [system] { header "__fwd/ostream.h" }
1386*0fca6ea1SDimitry Andricmodule std_private_iosfwd_sstream_fwd   [system] { header "__fwd/sstream.h" }
1387*0fca6ea1SDimitry Andricmodule std_private_iosfwd_streambuf_fwd [system] { header "__fwd/streambuf.h" }
1388*0fca6ea1SDimitry Andric
1389*0fca6ea1SDimitry Andricmodule std_private_iterator_access                  [system] { header "__iterator/access.h" }
1390*0fca6ea1SDimitry Andricmodule std_private_iterator_advance                 [system] { header "__iterator/advance.h" }
1391*0fca6ea1SDimitry Andricmodule std_private_iterator_aliasing_iterator       [system] { header "__iterator/aliasing_iterator.h" }
1392*0fca6ea1SDimitry Andricmodule std_private_iterator_back_insert_iterator    [system] { header "__iterator/back_insert_iterator.h" }
1393*0fca6ea1SDimitry Andricmodule std_private_iterator_bounded_iter            [system] { header "__iterator/bounded_iter.h" }
1394*0fca6ea1SDimitry Andricmodule std_private_iterator_common_iterator         [system] { header "__iterator/common_iterator.h" }
1395*0fca6ea1SDimitry Andricmodule std_private_iterator_concepts                [system] {
1396*0fca6ea1SDimitry Andric  header "__iterator/concepts.h"
1397*0fca6ea1SDimitry Andric  export std_private_concepts_constructible
1398*0fca6ea1SDimitry Andric  export std_private_concepts_equality_comparable
1399*0fca6ea1SDimitry Andric  export std_private_concepts_movable
1400*0fca6ea1SDimitry Andric  export std_private_type_traits_common_reference
1401*0fca6ea1SDimitry Andric  export std_private_type_traits_is_reference
1402*0fca6ea1SDimitry Andric  export std_private_type_traits_remove_cvref
1403*0fca6ea1SDimitry Andric}
1404*0fca6ea1SDimitry Andricmodule std_private_iterator_counted_iterator        [system] { header "__iterator/counted_iterator.h" }
1405*0fca6ea1SDimitry Andricmodule std_private_iterator_cpp17_iterator_concepts [system] { header "__iterator/cpp17_iterator_concepts.h" }
1406*0fca6ea1SDimitry Andricmodule std_private_iterator_data                    [system] { header "__iterator/data.h" }
1407*0fca6ea1SDimitry Andricmodule std_private_iterator_default_sentinel        [system] { header "__iterator/default_sentinel.h" }
1408*0fca6ea1SDimitry Andricmodule std_private_iterator_distance                [system] {
1409*0fca6ea1SDimitry Andric  header "__iterator/distance.h"
1410*0fca6ea1SDimitry Andric  export std_private_ranges_size
1411*0fca6ea1SDimitry Andric}
1412*0fca6ea1SDimitry Andricmodule std_private_iterator_empty                   [system] { header "__iterator/empty.h" }
1413*0fca6ea1SDimitry Andricmodule std_private_iterator_erase_if_container      [system] { header "__iterator/erase_if_container.h" }
1414*0fca6ea1SDimitry Andricmodule std_private_iterator_front_insert_iterator   [system] { header "__iterator/front_insert_iterator.h" }
1415*0fca6ea1SDimitry Andricmodule std_private_iterator_incrementable_traits    [system] { header "__iterator/incrementable_traits.h" }
1416*0fca6ea1SDimitry Andricmodule std_private_iterator_indirectly_comparable   [system] { header "__iterator/indirectly_comparable.h" }
1417*0fca6ea1SDimitry Andricmodule std_private_iterator_insert_iterator         [system] { header "__iterator/insert_iterator.h" }
1418*0fca6ea1SDimitry Andricmodule std_private_iterator_istream_iterator        [system] { header "__iterator/istream_iterator.h" }
1419*0fca6ea1SDimitry Andricmodule std_private_iterator_istreambuf_iterator     [system] { header "__iterator/istreambuf_iterator.h" }
1420*0fca6ea1SDimitry Andricmodule std_private_iterator_iter_move               [system] { header "__iterator/iter_move.h" }
1421*0fca6ea1SDimitry Andricmodule std_private_iterator_iter_swap               [system] { header "__iterator/iter_swap.h" }
1422*0fca6ea1SDimitry Andricmodule std_private_iterator_iterator                [system] { header "__iterator/iterator.h" }
1423*0fca6ea1SDimitry Andricmodule std_private_iterator_iterator_traits         [system] {
1424*0fca6ea1SDimitry Andric  header "__iterator/iterator_traits.h"
1425*0fca6ea1SDimitry Andric  export std_private_type_traits_is_primary_template
1426*0fca6ea1SDimitry Andric}
1427*0fca6ea1SDimitry Andricmodule std_private_iterator_iterator_with_data      [system] { header "__iterator/iterator_with_data.h" }
1428*0fca6ea1SDimitry Andricmodule std_private_iterator_mergeable               [system] {
1429*0fca6ea1SDimitry Andric  header "__iterator/mergeable.h"
1430*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
1431*0fca6ea1SDimitry Andric}
1432*0fca6ea1SDimitry Andricmodule std_private_iterator_move_iterator           [system] { header "__iterator/move_iterator.h" }
1433*0fca6ea1SDimitry Andricmodule std_private_iterator_move_sentinel           [system] { header "__iterator/move_sentinel.h" }
1434*0fca6ea1SDimitry Andricmodule std_private_iterator_next                    [system] { header "__iterator/next.h" }
1435*0fca6ea1SDimitry Andricmodule std_private_iterator_ostream_iterator        [system] { header "__iterator/ostream_iterator.h" }
1436*0fca6ea1SDimitry Andricmodule std_private_iterator_ostreambuf_iterator     [system] {
1437*0fca6ea1SDimitry Andric  header "__iterator/ostreambuf_iterator.h"
1438*0fca6ea1SDimitry Andric  export *
1439*0fca6ea1SDimitry Andric}
1440*0fca6ea1SDimitry Andricmodule std_private_iterator_permutable              [system] { header "__iterator/permutable.h" }
1441*0fca6ea1SDimitry Andricmodule std_private_iterator_prev                    [system] { header "__iterator/prev.h" }
1442*0fca6ea1SDimitry Andricmodule std_private_iterator_projected               [system] { header "__iterator/projected.h" }
1443*0fca6ea1SDimitry Andricmodule std_private_iterator_ranges_iterator_traits  [system] { header "__iterator/ranges_iterator_traits.h" }
1444*0fca6ea1SDimitry Andricmodule std_private_iterator_readable_traits         [system] { header "__iterator/readable_traits.h" }
1445*0fca6ea1SDimitry Andricmodule std_private_iterator_reverse_access          [system] { header "__iterator/reverse_access.h" }
1446*0fca6ea1SDimitry Andricmodule std_private_iterator_reverse_iterator        [system] { header "__iterator/reverse_iterator.h" }
1447*0fca6ea1SDimitry Andricmodule std_private_iterator_segmented_iterator      [system] { header "__iterator/segmented_iterator.h" }
1448*0fca6ea1SDimitry Andricmodule std_private_iterator_size                    [system] { header "__iterator/size.h" }
1449*0fca6ea1SDimitry Andricmodule std_private_iterator_sortable                [system] {
1450*0fca6ea1SDimitry Andric  header "__iterator/sortable.h"
1451*0fca6ea1SDimitry Andric  export std_private_functional_ranges_operations
1452*0fca6ea1SDimitry Andric}
1453*0fca6ea1SDimitry Andricmodule std_private_iterator_unreachable_sentinel    [system] { header "__iterator/unreachable_sentinel.h" }
1454*0fca6ea1SDimitry Andricmodule std_private_iterator_wrap_iter               [system] { header "__iterator/wrap_iter.h" }
1455*0fca6ea1SDimitry Andric
1456*0fca6ea1SDimitry Andricmodule std_private_locale_locale_base_api_android              [system] { textual header "__locale_dir/locale_base_api/android.h" }
1457*0fca6ea1SDimitry Andricmodule std_private_locale_locale_base_api_bsd_locale_defaults  [system] { textual header "__locale_dir/locale_base_api/bsd_locale_defaults.h" }
1458*0fca6ea1SDimitry Andricmodule std_private_locale_locale_base_api_bsd_locale_fallbacks [system] { textual header "__locale_dir/locale_base_api/bsd_locale_fallbacks.h" }
1459*0fca6ea1SDimitry Andricmodule std_private_locale_locale_base_api_fuchsia              [system] { textual header "__locale_dir/locale_base_api/fuchsia.h" }
1460*0fca6ea1SDimitry Andricmodule std_private_locale_locale_base_api_ibm                  [system] { textual header "__locale_dir/locale_base_api/ibm.h" }
1461*0fca6ea1SDimitry Andricmodule std_private_locale_locale_base_api_locale_guard         [system] { header "__locale_dir/locale_base_api/locale_guard.h" }
1462*0fca6ea1SDimitry Andricmodule std_private_locale_locale_base_api_musl                 [system] { textual header "__locale_dir/locale_base_api/musl.h" }
1463*0fca6ea1SDimitry Andricmodule std_private_locale_locale_base_api_newlib               [system] { textual header "__locale_dir/locale_base_api/newlib.h" }
1464*0fca6ea1SDimitry Andricmodule std_private_locale_locale_base_api_openbsd              [system] { textual header "__locale_dir/locale_base_api/openbsd.h" }
1465*0fca6ea1SDimitry Andricmodule std_private_locale_locale_base_api_win32                [system] { textual header "__locale_dir/locale_base_api/win32.h" }
1466*0fca6ea1SDimitry Andricmodule std_private_locale_locale_base_api                      [system] {
1467*0fca6ea1SDimitry Andric  header "__locale_dir/locale_base_api.h"
1468*0fca6ea1SDimitry Andric  export *
1469*0fca6ea1SDimitry Andric}
1470*0fca6ea1SDimitry Andric
1471*0fca6ea1SDimitry Andricmodule std_private_math_abs                             [system] { header "__math/abs.h" }
1472*0fca6ea1SDimitry Andricmodule std_private_math_copysign                        [system] { header "__math/copysign.h" }
1473*0fca6ea1SDimitry Andricmodule std_private_math_error_functions                 [system] { header "__math/error_functions.h" }
1474*0fca6ea1SDimitry Andricmodule std_private_math_exponential_functions           [system] { header "__math/exponential_functions.h" }
1475*0fca6ea1SDimitry Andricmodule std_private_math_fdim                            [system] { header "__math/fdim.h" }
1476*0fca6ea1SDimitry Andricmodule std_private_math_fma                             [system] { header "__math/fma.h" }
1477*0fca6ea1SDimitry Andricmodule std_private_math_gamma                           [system] { header "__math/gamma.h" }
1478*0fca6ea1SDimitry Andricmodule std_private_math_hyperbolic_functions            [system] { header "__math/hyperbolic_functions.h" }
1479*0fca6ea1SDimitry Andricmodule std_private_math_hypot                           [system] { header "__math/hypot.h" }
1480*0fca6ea1SDimitry Andricmodule std_private_math_inverse_hyperbolic_functions    [system] { header "__math/inverse_hyperbolic_functions.h" }
1481*0fca6ea1SDimitry Andricmodule std_private_math_inverse_trigonometric_functions [system] { header "__math/inverse_trigonometric_functions.h" }
1482*0fca6ea1SDimitry Andricmodule std_private_math_logarithms                      [system] { header "__math/logarithms.h" }
1483*0fca6ea1SDimitry Andricmodule std_private_math_min_max                         [system] { header "__math/min_max.h" }
1484*0fca6ea1SDimitry Andricmodule std_private_math_modulo                          [system] { header "__math/modulo.h" }
1485*0fca6ea1SDimitry Andricmodule std_private_math_remainder                       [system] { header "__math/remainder.h" }
1486*0fca6ea1SDimitry Andricmodule std_private_math_roots                           [system] { header "__math/roots.h" }
1487*0fca6ea1SDimitry Andricmodule std_private_math_rounding_functions              [system] { header "__math/rounding_functions.h" }
1488*0fca6ea1SDimitry Andricmodule std_private_math_special_functions               [system] { header "__math/special_functions.h" }
1489*0fca6ea1SDimitry Andricmodule std_private_math_traits                          [system] { header "__math/traits.h" }
1490*0fca6ea1SDimitry Andricmodule std_private_math_trigonometric_functions         [system] { header "__math/trigonometric_functions.h" }
1491*0fca6ea1SDimitry Andric
1492*0fca6ea1SDimitry Andricmodule std_private_mdspan_default_accessor [system] { header "__mdspan/default_accessor.h" }
1493*0fca6ea1SDimitry Andricmodule std_private_mdspan_extents          [system] {
1494*0fca6ea1SDimitry Andric  header "__mdspan/extents.h"
1495*0fca6ea1SDimitry Andric  export *
1496*0fca6ea1SDimitry Andric}
1497*0fca6ea1SDimitry Andricmodule std_private_mdspan_layout_left      [system] { header "__mdspan/layout_left.h" }
1498*0fca6ea1SDimitry Andricmodule std_private_mdspan_layout_right     [system] { header "__mdspan/layout_right.h" }
1499*0fca6ea1SDimitry Andricmodule std_private_mdspan_layout_stride    [system] { header "__mdspan/layout_stride.h" }
1500*0fca6ea1SDimitry Andricmodule std_private_mdspan_mdspan           [system] { header "__mdspan/mdspan.h" }
1501*0fca6ea1SDimitry Andricmodule std_private_mdspan_mdspan_fwd       [system] { header "__fwd/mdspan.h" }
1502*0fca6ea1SDimitry Andric
1503*0fca6ea1SDimitry Andricmodule std_private_memory_addressof                       [system] { header "__memory/addressof.h" }
1504*0fca6ea1SDimitry Andricmodule std_private_memory_align                           [system] { header "__memory/align.h" }
1505*0fca6ea1SDimitry Andricmodule std_private_memory_aligned_alloc                   [system] { header "__memory/aligned_alloc.h" }
1506*0fca6ea1SDimitry Andricmodule std_private_memory_allocate_at_least               [system] { header "__memory/allocate_at_least.h" }
1507*0fca6ea1SDimitry Andricmodule std_private_memory_allocation_guard                [system] { header "__memory/allocation_guard.h" }
1508*0fca6ea1SDimitry Andricmodule std_private_memory_allocator                       [system] { header "__memory/allocator.h" }
1509*0fca6ea1SDimitry Andricmodule std_private_memory_allocator_arg_t                 [system] { header "__memory/allocator_arg_t.h" }
1510*0fca6ea1SDimitry Andricmodule std_private_memory_allocator_destructor            [system] { header "__memory/allocator_destructor.h" }
1511*0fca6ea1SDimitry Andricmodule std_private_memory_allocator_traits                [system] { header "__memory/allocator_traits.h" }
1512*0fca6ea1SDimitry Andricmodule std_private_memory_assume_aligned                  [system] { header "__memory/assume_aligned.h" }
1513*0fca6ea1SDimitry Andricmodule std_private_memory_auto_ptr                        [system] { header "__memory/auto_ptr.h" }
1514*0fca6ea1SDimitry Andricmodule std_private_memory_builtin_new_allocator           [system] {
1515*0fca6ea1SDimitry Andric  header "__memory/builtin_new_allocator.h"
1516*0fca6ea1SDimitry Andric  export *
1517*0fca6ea1SDimitry Andric}
1518*0fca6ea1SDimitry Andricmodule std_private_memory_compressed_pair                 [system] { header "__memory/compressed_pair.h" }
1519*0fca6ea1SDimitry Andricmodule std_private_memory_concepts                        [system] {
1520*0fca6ea1SDimitry Andric  header "__memory/concepts.h"
1521*0fca6ea1SDimitry Andric  export std_private_type_traits_remove_reference
1522*0fca6ea1SDimitry Andric}
1523*0fca6ea1SDimitry Andricmodule std_private_memory_construct_at                    [system] { header "__memory/construct_at.h" }
1524*0fca6ea1SDimitry Andricmodule std_private_memory_destruct_n                      [system] { header "__memory/destruct_n.h" }
1525*0fca6ea1SDimitry Andricmodule std_private_memory_fwd                             [system] { header "__fwd/memory.h" }
1526*0fca6ea1SDimitry Andricmodule std_private_memory_inout_ptr                       [system] { header "__memory/inout_ptr.h" }
1527*0fca6ea1SDimitry Andricmodule std_private_memory_out_ptr                         [system] { header "__memory/out_ptr.h" }
1528*0fca6ea1SDimitry Andricmodule std_private_memory_pointer_traits                  [system] { header "__memory/pointer_traits.h" }
1529*0fca6ea1SDimitry Andricmodule std_private_memory_ranges_construct_at             [system] { header "__memory/ranges_construct_at.h" }
1530*0fca6ea1SDimitry Andricmodule std_private_memory_ranges_uninitialized_algorithms [system] {
1531*0fca6ea1SDimitry Andric  header "__memory/ranges_uninitialized_algorithms.h"
1532*0fca6ea1SDimitry Andric  export std_private_algorithm_in_out_result
1533*0fca6ea1SDimitry Andric}
1534*0fca6ea1SDimitry Andricmodule std_private_memory_raw_storage_iterator            [system] { header "__memory/raw_storage_iterator.h" }
1535*0fca6ea1SDimitry Andricmodule std_private_memory_shared_ptr                      [system] {
1536*0fca6ea1SDimitry Andric  header "__memory/shared_ptr.h"
1537*0fca6ea1SDimitry Andric  export std_private_memory_uninitialized_algorithms
1538*0fca6ea1SDimitry Andric}
1539*0fca6ea1SDimitry Andricmodule std_private_memory_swap_allocator                  [system] { header "__memory/swap_allocator.h" }
1540*0fca6ea1SDimitry Andricmodule std_private_memory_temp_value                      [system] { header "__memory/temp_value.h" }
1541*0fca6ea1SDimitry Andricmodule std_private_memory_temporary_buffer                [system] {
1542*0fca6ea1SDimitry Andric  header "__memory/temporary_buffer.h"
1543*0fca6ea1SDimitry Andric  export std_private_utility_pair
1544*0fca6ea1SDimitry Andric}
1545*0fca6ea1SDimitry Andricmodule std_private_memory_uninitialized_algorithms        [system] {
1546*0fca6ea1SDimitry Andric  header "__memory/uninitialized_algorithms.h"
1547*0fca6ea1SDimitry Andric  export std_private_algorithm_copy
1548*0fca6ea1SDimitry Andric}
1549*0fca6ea1SDimitry Andricmodule std_private_memory_unique_ptr                      [system] {
1550*0fca6ea1SDimitry Andric  header "__memory/unique_ptr.h"
1551*0fca6ea1SDimitry Andric  export std_private_type_traits_add_lvalue_reference
1552*0fca6ea1SDimitry Andric  export std_private_type_traits_is_pointer
1553*0fca6ea1SDimitry Andric  export std_private_type_traits_type_identity
1554*0fca6ea1SDimitry Andric}
1555*0fca6ea1SDimitry Andricmodule std_private_memory_uses_allocator                  [system] { header "__memory/uses_allocator.h" }
1556*0fca6ea1SDimitry Andricmodule std_private_memory_uses_allocator_construction     [system] { header "__memory/uses_allocator_construction.h" }
1557*0fca6ea1SDimitry Andricmodule std_private_memory_voidify                         [system] { header "__memory/voidify.h" }
1558*0fca6ea1SDimitry Andric
1559*0fca6ea1SDimitry Andricmodule std_private_memory_resource_memory_resource              [system] { header "__memory_resource/memory_resource.h" }
1560*0fca6ea1SDimitry Andricmodule std_private_memory_resource_memory_resource_fwd          [system] { header "__fwd/memory_resource.h" }
1561*0fca6ea1SDimitry Andricmodule std_private_memory_resource_monotonic_buffer_resource    [system] { header "__memory_resource/monotonic_buffer_resource.h" }
1562*0fca6ea1SDimitry Andricmodule std_private_memory_resource_polymorphic_allocator        [system] { header "__memory_resource/polymorphic_allocator.h" }
1563*0fca6ea1SDimitry Andricmodule std_private_memory_resource_pool_options                 [system] { header "__memory_resource/pool_options.h" }
1564*0fca6ea1SDimitry Andricmodule std_private_memory_resource_synchronized_pool_resource   [system] {
1565*0fca6ea1SDimitry Andric  header "__memory_resource/synchronized_pool_resource.h"
1566*0fca6ea1SDimitry Andric  export *
1567*0fca6ea1SDimitry Andric}
1568*0fca6ea1SDimitry Andricmodule std_private_memory_resource_unsynchronized_pool_resource [system] { header "__memory_resource/unsynchronized_pool_resource.h" }
1569*0fca6ea1SDimitry Andric
1570*0fca6ea1SDimitry Andricmodule std_private_mutex_lock_guard  [system] { header "__mutex/lock_guard.h" }
1571*0fca6ea1SDimitry Andricmodule std_private_mutex_mutex       [system] { header "__mutex/mutex.h" }
1572*0fca6ea1SDimitry Andricmodule std_private_mutex_once_flag  [system]  { header "__mutex/once_flag.h" }
1573*0fca6ea1SDimitry Andricmodule std_private_mutex_tag_types   [system] { header "__mutex/tag_types.h" }
1574*0fca6ea1SDimitry Andricmodule std_private_mutex_unique_lock [system] { header "__mutex/unique_lock.h" }
1575*0fca6ea1SDimitry Andric
1576*0fca6ea1SDimitry Andricmodule std_private_numeric_accumulate               [system] { header "__numeric/accumulate.h" }
1577*0fca6ea1SDimitry Andricmodule std_private_numeric_adjacent_difference      [system] { header "__numeric/adjacent_difference.h" }
1578*0fca6ea1SDimitry Andricmodule std_private_numeric_exclusive_scan           [system] { header "__numeric/exclusive_scan.h" }
1579*0fca6ea1SDimitry Andricmodule std_private_numeric_gcd_lcm                  [system] { header "__numeric/gcd_lcm.h" }
1580*0fca6ea1SDimitry Andricmodule std_private_numeric_inclusive_scan           [system] { header "__numeric/inclusive_scan.h" }
1581*0fca6ea1SDimitry Andricmodule std_private_numeric_inner_product            [system] { header "__numeric/inner_product.h" }
1582*0fca6ea1SDimitry Andricmodule std_private_numeric_iota                     [system] { header "__numeric/iota.h" }
1583*0fca6ea1SDimitry Andricmodule std_private_numeric_midpoint                 [system] { header "__numeric/midpoint.h" }
1584*0fca6ea1SDimitry Andricmodule std_private_numeric_partial_sum              [system] { header "__numeric/partial_sum.h" }
1585*0fca6ea1SDimitry Andricmodule std_private_numeric_pstl                     [system] {
1586*0fca6ea1SDimitry Andric  header "__numeric/pstl.h"
1587*0fca6ea1SDimitry Andric  export *
1588*0fca6ea1SDimitry Andric}
1589*0fca6ea1SDimitry Andricmodule std_private_numeric_reduce                   [system] { header "__numeric/reduce.h" }
1590*0fca6ea1SDimitry Andricmodule std_private_numeric_saturation_arithmetic    [system] { header "__numeric/saturation_arithmetic.h" }
1591*0fca6ea1SDimitry Andricmodule std_private_numeric_transform_exclusive_scan [system] { header "__numeric/transform_exclusive_scan.h" }
1592*0fca6ea1SDimitry Andricmodule std_private_numeric_transform_inclusive_scan [system] { header "__numeric/transform_inclusive_scan.h" }
1593*0fca6ea1SDimitry Andricmodule std_private_numeric_transform_reduce         [system] { header "__numeric/transform_reduce.h" }
1594*0fca6ea1SDimitry Andric
1595*0fca6ea1SDimitry Andricmodule std_private_pstl_backend                    [system] {
1596*0fca6ea1SDimitry Andric  header "__pstl/backend.h"
1597*0fca6ea1SDimitry Andric  export *
1598*0fca6ea1SDimitry Andric}
1599*0fca6ea1SDimitry Andricmodule std_private_pstl_backend_fwd                [system] {
1600*0fca6ea1SDimitry Andric  header "__pstl/backend_fwd.h"
1601*0fca6ea1SDimitry Andric  export *
1602*0fca6ea1SDimitry Andric}
1603*0fca6ea1SDimitry Andricmodule std_private_pstl_backends_default           [system] {
1604*0fca6ea1SDimitry Andric  header "__pstl/backends/default.h"
1605*0fca6ea1SDimitry Andric  export *
1606*0fca6ea1SDimitry Andric}
1607*0fca6ea1SDimitry Andricmodule std_private_pstl_backends_libdispatch       [system] {
1608*0fca6ea1SDimitry Andric  header "__pstl/backends/libdispatch.h"
1609*0fca6ea1SDimitry Andric  export *
1610*0fca6ea1SDimitry Andric}
1611*0fca6ea1SDimitry Andricmodule std_private_pstl_backends_serial            [system] {
1612*0fca6ea1SDimitry Andric  header "__pstl/backends/serial.h"
1613*0fca6ea1SDimitry Andric  export *
1614*0fca6ea1SDimitry Andric}
1615*0fca6ea1SDimitry Andricmodule std_private_pstl_backends_std_thread        [system] {
1616*0fca6ea1SDimitry Andric  header "__pstl/backends/std_thread.h"
1617*0fca6ea1SDimitry Andric  export *
1618*0fca6ea1SDimitry Andric}
1619*0fca6ea1SDimitry Andricmodule std_private_pstl_cpu_algos_any_of           [system] { header "__pstl/cpu_algos/any_of.h" }
1620*0fca6ea1SDimitry Andricmodule std_private_pstl_cpu_algos_cpu_traits       [system] { header "__pstl/cpu_algos/cpu_traits.h" }
1621*0fca6ea1SDimitry Andricmodule std_private_pstl_cpu_algos_fill             [system] { header "__pstl/cpu_algos/fill.h" }
1622*0fca6ea1SDimitry Andricmodule std_private_pstl_cpu_algos_find_if          [system] { header "__pstl/cpu_algos/find_if.h" }
1623*0fca6ea1SDimitry Andricmodule std_private_pstl_cpu_algos_for_each         [system] { header "__pstl/cpu_algos/for_each.h" }
1624*0fca6ea1SDimitry Andricmodule std_private_pstl_cpu_algos_merge            [system] { header "__pstl/cpu_algos/merge.h" }
1625*0fca6ea1SDimitry Andricmodule std_private_pstl_cpu_algos_stable_sort      [system] { header "__pstl/cpu_algos/stable_sort.h" }
1626*0fca6ea1SDimitry Andricmodule std_private_pstl_cpu_algos_transform        [system] { header "__pstl/cpu_algos/transform.h" }
1627*0fca6ea1SDimitry Andricmodule std_private_pstl_cpu_algos_transform_reduce [system] { header "__pstl/cpu_algos/transform_reduce.h" }
1628*0fca6ea1SDimitry Andricmodule std_private_pstl_dispatch                   [system] { header "__pstl/dispatch.h" }
1629*0fca6ea1SDimitry Andricmodule std_private_pstl_handle_exception           [system] { header "__pstl/handle_exception.h" }
1630*0fca6ea1SDimitry Andric
1631*0fca6ea1SDimitry Andricmodule std_private_queue_fwd [system] { header "__fwd/queue.h" }
1632*0fca6ea1SDimitry Andric
1633*0fca6ea1SDimitry Andricmodule std_private_ostream_basic_ostream [system] {
1634*0fca6ea1SDimitry Andric  header "__ostream/basic_ostream.h"
1635*0fca6ea1SDimitry Andric  export std_streambuf
1636*0fca6ea1SDimitry Andric}
1637*0fca6ea1SDimitry Andricmodule std_private_ostream_print         [system] {
1638*0fca6ea1SDimitry Andric  header "__ostream/print.h"
1639*0fca6ea1SDimitry Andric  export std_print
1640*0fca6ea1SDimitry Andric}
1641*0fca6ea1SDimitry Andric
1642*0fca6ea1SDimitry Andricmodule std_private_random_bernoulli_distribution          [system] { header "__random/bernoulli_distribution.h" }
1643*0fca6ea1SDimitry Andricmodule std_private_random_binomial_distribution           [system] { header "__random/binomial_distribution.h" }
1644*0fca6ea1SDimitry Andricmodule std_private_random_cauchy_distribution             [system] { header "__random/cauchy_distribution.h" }
1645*0fca6ea1SDimitry Andricmodule std_private_random_chi_squared_distribution        [system] { header "__random/chi_squared_distribution.h" }
1646*0fca6ea1SDimitry Andricmodule std_private_random_clamp_to_integral               [system] { header "__random/clamp_to_integral.h" }
1647*0fca6ea1SDimitry Andricmodule std_private_random_default_random_engine           [system] { header "__random/default_random_engine.h" }
1648*0fca6ea1SDimitry Andricmodule std_private_random_discard_block_engine            [system] { header "__random/discard_block_engine.h" }
1649*0fca6ea1SDimitry Andricmodule std_private_random_discrete_distribution           [system] {
1650*0fca6ea1SDimitry Andric  header "__random/discrete_distribution.h"
1651*0fca6ea1SDimitry Andric  export *
1652*0fca6ea1SDimitry Andric}
1653*0fca6ea1SDimitry Andricmodule std_private_random_exponential_distribution        [system] { header "__random/exponential_distribution.h" }
1654*0fca6ea1SDimitry Andricmodule std_private_random_extreme_value_distribution      [system] { header "__random/extreme_value_distribution.h" }
1655*0fca6ea1SDimitry Andricmodule std_private_random_fisher_f_distribution           [system] { header "__random/fisher_f_distribution.h" }
1656*0fca6ea1SDimitry Andricmodule std_private_random_gamma_distribution              [system] { header "__random/gamma_distribution.h" }
1657*0fca6ea1SDimitry Andricmodule std_private_random_generate_canonical              [system] { header "__random/generate_canonical.h" }
1658*0fca6ea1SDimitry Andricmodule std_private_random_geometric_distribution          [system] { header "__random/geometric_distribution.h" }
1659*0fca6ea1SDimitry Andricmodule std_private_random_independent_bits_engine         [system] { header "__random/independent_bits_engine.h" }
1660*0fca6ea1SDimitry Andricmodule std_private_random_is_seed_sequence                [system] { header "__random/is_seed_sequence.h" }
1661*0fca6ea1SDimitry Andricmodule std_private_random_is_valid                        [system] { header "__random/is_valid.h" }
1662*0fca6ea1SDimitry Andricmodule std_private_random_knuth_b                         [system] { header "__random/knuth_b.h" }
1663*0fca6ea1SDimitry Andricmodule std_private_random_linear_congruential_engine      [system] { header "__random/linear_congruential_engine.h" }
1664*0fca6ea1SDimitry Andricmodule std_private_random_log2                            [system] { header "__random/log2.h" }
1665*0fca6ea1SDimitry Andricmodule std_private_random_lognormal_distribution          [system] { header "__random/lognormal_distribution.h" }
1666*0fca6ea1SDimitry Andricmodule std_private_random_mersenne_twister_engine         [system] { header "__random/mersenne_twister_engine.h" }
1667*0fca6ea1SDimitry Andricmodule std_private_random_negative_binomial_distribution  [system] { header "__random/negative_binomial_distribution.h" }
1668*0fca6ea1SDimitry Andricmodule std_private_random_normal_distribution             [system] { header "__random/normal_distribution.h" }
1669*0fca6ea1SDimitry Andricmodule std_private_random_piecewise_constant_distribution [system] {
1670*0fca6ea1SDimitry Andric  header "__random/piecewise_constant_distribution.h"
1671*0fca6ea1SDimitry Andric  export *
1672*0fca6ea1SDimitry Andric}
1673*0fca6ea1SDimitry Andricmodule std_private_random_piecewise_linear_distribution   [system] {
1674*0fca6ea1SDimitry Andric  header "__random/piecewise_linear_distribution.h"
1675*0fca6ea1SDimitry Andric  export *
1676*0fca6ea1SDimitry Andric}
1677*0fca6ea1SDimitry Andricmodule std_private_random_poisson_distribution            [system] { header "__random/poisson_distribution.h" }
1678*0fca6ea1SDimitry Andricmodule std_private_random_random_device                   [system] {
1679*0fca6ea1SDimitry Andric  header "__random/random_device.h"
1680*0fca6ea1SDimitry Andric  export *
1681*0fca6ea1SDimitry Andric}
1682*0fca6ea1SDimitry Andricmodule std_private_random_ranlux                          [system] { header "__random/ranlux.h" }
1683*0fca6ea1SDimitry Andricmodule std_private_random_seed_seq                        [system] {
1684*0fca6ea1SDimitry Andric  header "__random/seed_seq.h"
1685*0fca6ea1SDimitry Andric  export *
1686*0fca6ea1SDimitry Andric}
1687*0fca6ea1SDimitry Andricmodule std_private_random_shuffle_order_engine            [system] { header "__random/shuffle_order_engine.h" }
1688*0fca6ea1SDimitry Andricmodule std_private_random_student_t_distribution          [system] { header "__random/student_t_distribution.h" }
1689*0fca6ea1SDimitry Andricmodule std_private_random_subtract_with_carry_engine      [system] { header "__random/subtract_with_carry_engine.h" }
1690*0fca6ea1SDimitry Andricmodule std_private_random_uniform_int_distribution        [system] { header "__random/uniform_int_distribution.h" }
1691*0fca6ea1SDimitry Andricmodule std_private_random_uniform_random_bit_generator    [system] { header "__random/uniform_random_bit_generator.h" }
1692*0fca6ea1SDimitry Andricmodule std_private_random_uniform_real_distribution       [system] { header "__random/uniform_real_distribution.h" }
1693*0fca6ea1SDimitry Andricmodule std_private_random_weibull_distribution            [system] { header "__random/weibull_distribution.h" }
1694*0fca6ea1SDimitry Andric
1695*0fca6ea1SDimitry Andricmodule std_private_ranges_access                     [system] { header "__ranges/access.h" }
1696*0fca6ea1SDimitry Andricmodule std_private_ranges_all                        [system] {
1697*0fca6ea1SDimitry Andric  header "__ranges/all.h"
1698*0fca6ea1SDimitry Andric  export std_private_functional_compose
1699*0fca6ea1SDimitry Andric  export std_private_functional_perfect_forward
1700*0fca6ea1SDimitry Andric  export std_private_ranges_owning_view
1701*0fca6ea1SDimitry Andric}
1702*0fca6ea1SDimitry Andricmodule std_private_ranges_as_rvalue_view             [system] { header "__ranges/as_rvalue_view.h" }
1703*0fca6ea1SDimitry Andricmodule std_private_ranges_chunk_by_view              [system] { header "__ranges/chunk_by_view.h" }
1704*0fca6ea1SDimitry Andricmodule std_private_ranges_common_view                [system] { header "__ranges/common_view.h" }
1705*0fca6ea1SDimitry Andricmodule std_private_ranges_concepts                   [system] {
1706*0fca6ea1SDimitry Andric  header "__ranges/concepts.h"
1707*0fca6ea1SDimitry Andric  export std_private_iterator_concepts
1708*0fca6ea1SDimitry Andric}
1709*0fca6ea1SDimitry Andricmodule std_private_ranges_container_compatible_range [system] { header "__ranges/container_compatible_range.h" }
1710*0fca6ea1SDimitry Andricmodule std_private_ranges_counted                    [system] {
1711*0fca6ea1SDimitry Andric  header "__ranges/counted.h"
1712*0fca6ea1SDimitry Andric  export std_span
1713*0fca6ea1SDimitry Andric}
1714*0fca6ea1SDimitry Andricmodule std_private_ranges_dangling                   [system] { header "__ranges/dangling.h" }
1715*0fca6ea1SDimitry Andricmodule std_private_ranges_data                       [system] { header "__ranges/data.h" }
1716*0fca6ea1SDimitry Andricmodule std_private_ranges_drop_view                  [system] { header "__ranges/drop_view.h" }
1717*0fca6ea1SDimitry Andricmodule std_private_ranges_drop_while_view            [system] { header "__ranges/drop_while_view.h" }
1718*0fca6ea1SDimitry Andricmodule std_private_ranges_elements_view              [system] { header "__ranges/elements_view.h" }
1719*0fca6ea1SDimitry Andricmodule std_private_ranges_empty                      [system] { header "__ranges/empty.h" }
1720*0fca6ea1SDimitry Andricmodule std_private_ranges_empty_view                 [system] { header "__ranges/empty_view.h" }
1721*0fca6ea1SDimitry Andricmodule std_private_ranges_enable_borrowed_range      [system] { header "__ranges/enable_borrowed_range.h" }
1722*0fca6ea1SDimitry Andricmodule std_private_ranges_enable_view                [system] { header "__ranges/enable_view.h" }
1723*0fca6ea1SDimitry Andricmodule std_private_ranges_filter_view                [system] {
1724*0fca6ea1SDimitry Andric  header "__ranges/filter_view.h"
1725*0fca6ea1SDimitry Andric  export std_private_ranges_range_adaptor
1726*0fca6ea1SDimitry Andric}
1727*0fca6ea1SDimitry Andricmodule std_private_ranges_from_range                 [system] { header "__ranges/from_range.h" }
1728*0fca6ea1SDimitry Andricmodule std_private_ranges_iota_view                  [system] { header "__ranges/iota_view.h" }
1729*0fca6ea1SDimitry Andricmodule std_private_ranges_istream_view               [system] {
1730*0fca6ea1SDimitry Andric  header "__ranges/istream_view.h"
1731*0fca6ea1SDimitry Andric}
1732*0fca6ea1SDimitry Andricmodule std_private_ranges_join_view                  [system] {
1733*0fca6ea1SDimitry Andric  header "__ranges/join_view.h"
1734*0fca6ea1SDimitry Andric  export std_private_iterator_iterator_with_data
1735*0fca6ea1SDimitry Andric  export std_private_iterator_segmented_iterator
1736*0fca6ea1SDimitry Andric}
1737*0fca6ea1SDimitry Andricmodule std_private_ranges_lazy_split_view            [system] {
1738*0fca6ea1SDimitry Andric  header "__ranges/lazy_split_view.h"
1739*0fca6ea1SDimitry Andric  export std_private_ranges_non_propagating_cache
1740*0fca6ea1SDimitry Andric}
1741*0fca6ea1SDimitry Andricmodule std_private_ranges_movable_box                [system] { header "__ranges/movable_box.h" }
1742*0fca6ea1SDimitry Andricmodule std_private_ranges_non_propagating_cache      [system] { header "__ranges/non_propagating_cache.h" }
1743*0fca6ea1SDimitry Andricmodule std_private_ranges_owning_view                [system] { header "__ranges/owning_view.h" }
1744*0fca6ea1SDimitry Andricmodule std_private_ranges_range_adaptor              [system] { header "__ranges/range_adaptor.h" }
1745*0fca6ea1SDimitry Andricmodule std_private_ranges_rbegin                     [system] { header "__ranges/rbegin.h" }
1746*0fca6ea1SDimitry Andricmodule std_private_ranges_ref_view                   [system] { header "__ranges/ref_view.h" }
1747*0fca6ea1SDimitry Andricmodule std_private_ranges_rend                       [system] { header "__ranges/rend.h" }
1748*0fca6ea1SDimitry Andricmodule std_private_ranges_repeat_view                [system] { header "__ranges/repeat_view.h" }
1749*0fca6ea1SDimitry Andricmodule std_private_ranges_reverse_view               [system] { header "__ranges/reverse_view.h" }
1750*0fca6ea1SDimitry Andricmodule std_private_ranges_single_view                [system] { header "__ranges/single_view.h" }
1751*0fca6ea1SDimitry Andricmodule std_private_ranges_size                       [system] {
1752*0fca6ea1SDimitry Andric  header "__ranges/size.h"
1753*0fca6ea1SDimitry Andric  export std_private_type_traits_make_unsigned
1754*0fca6ea1SDimitry Andric}
1755*0fca6ea1SDimitry Andricmodule std_private_ranges_split_view                 [system] { header "__ranges/split_view.h" }
1756*0fca6ea1SDimitry Andricmodule std_private_ranges_subrange                   [system] {
1757*0fca6ea1SDimitry Andric  header "__ranges/subrange.h"
1758*0fca6ea1SDimitry Andric  export std_private_ranges_subrange_fwd
1759*0fca6ea1SDimitry Andric}
1760*0fca6ea1SDimitry Andricmodule std_private_ranges_subrange_fwd               [system] {
1761*0fca6ea1SDimitry Andric  header "__fwd/subrange.h"
1762*0fca6ea1SDimitry Andric  export std_private_iterator_concepts
1763*0fca6ea1SDimitry Andric}
1764*0fca6ea1SDimitry Andricmodule std_private_ranges_take_view                  [system] { header "__ranges/take_view.h" }
1765*0fca6ea1SDimitry Andricmodule std_private_ranges_take_while_view            [system] { header "__ranges/take_while_view.h" }
1766*0fca6ea1SDimitry Andricmodule std_private_ranges_to                         [system] { header "__ranges/to.h" }
1767*0fca6ea1SDimitry Andricmodule std_private_ranges_transform_view             [system] {
1768*0fca6ea1SDimitry Andric  header "__ranges/transform_view.h"
1769*0fca6ea1SDimitry Andric  export std_private_functional_bind_back
1770*0fca6ea1SDimitry Andric  export std_private_functional_perfect_forward
1771*0fca6ea1SDimitry Andric  export std_private_ranges_movable_box
1772*0fca6ea1SDimitry Andric}
1773*0fca6ea1SDimitry Andricmodule std_private_ranges_view_interface             [system] { header "__ranges/view_interface.h" }
1774*0fca6ea1SDimitry Andricmodule std_private_ranges_views                      [system] { header "__ranges/views.h" }
1775*0fca6ea1SDimitry Andricmodule std_private_ranges_zip_view                   [system] {
1776*0fca6ea1SDimitry Andric  header "__ranges/zip_view.h"
1777*0fca6ea1SDimitry Andric  export std_private_utility_pair
1778*0fca6ea1SDimitry Andric}
1779*0fca6ea1SDimitry Andric
1780*0fca6ea1SDimitry Andricmodule std_private_span_span_fwd [system] { header "__fwd/span.h" }
1781*0fca6ea1SDimitry Andric
1782*0fca6ea1SDimitry Andricmodule std_private_stack_fwd [system] { header "__fwd/stack.h" }
1783*0fca6ea1SDimitry Andric
1784*0fca6ea1SDimitry Andricmodule std_private_stop_token_atomic_unique_lock   [system] { header "__stop_token/atomic_unique_lock.h" }
1785*0fca6ea1SDimitry Andricmodule std_private_stop_token_intrusive_list_view  [system] { header "__stop_token/intrusive_list_view.h" }
1786*0fca6ea1SDimitry Andricmodule std_private_stop_token_intrusive_shared_ptr [system] { header "__stop_token/intrusive_shared_ptr.h" }
1787*0fca6ea1SDimitry Andricmodule std_private_stop_token_stop_callback        [system] { header "__stop_token/stop_callback.h" }
1788*0fca6ea1SDimitry Andricmodule std_private_stop_token_stop_source          [system] {
1789*0fca6ea1SDimitry Andric  header "__stop_token/stop_source.h"
1790*0fca6ea1SDimitry Andric  export *
1791*0fca6ea1SDimitry Andric}
1792*0fca6ea1SDimitry Andricmodule std_private_stop_token_stop_state           [system] {
1793*0fca6ea1SDimitry Andric  header "__stop_token/stop_state.h"
1794*0fca6ea1SDimitry Andric  export *
1795*0fca6ea1SDimitry Andric}
1796*0fca6ea1SDimitry Andricmodule std_private_stop_token_stop_token           [system] {
1797*0fca6ea1SDimitry Andric  header "__stop_token/stop_token.h"
1798*0fca6ea1SDimitry Andric  export *
1799*0fca6ea1SDimitry Andric}
1800*0fca6ea1SDimitry Andric
1801*0fca6ea1SDimitry Andricmodule std_private_string_char_traits           [system] {
1802*0fca6ea1SDimitry Andric  header "__string/char_traits.h"
1803*0fca6ea1SDimitry Andric  export *
1804*0fca6ea1SDimitry Andric}
1805*0fca6ea1SDimitry Andricmodule std_private_string_constexpr_c_functions [system] {
1806*0fca6ea1SDimitry Andric  header "__string/constexpr_c_functions.h"
1807*0fca6ea1SDimitry Andric  export std_private_type_traits_is_equality_comparable
1808*0fca6ea1SDimitry Andric}
1809*0fca6ea1SDimitry Andricmodule std_private_string_extern_template_lists [system] { header "__string/extern_template_lists.h" }
1810*0fca6ea1SDimitry Andricmodule std_private_string_string_fwd            [system] { header "__fwd/string.h" }
1811*0fca6ea1SDimitry Andric
1812*0fca6ea1SDimitry Andricmodule std_private_string_view_string_view_fwd [system] { header "__fwd/string_view.h" }
1813*0fca6ea1SDimitry Andric
1814*0fca6ea1SDimitry Andricmodule std_private_system_error_errc            [system] { header "__system_error/errc.h" }
1815*0fca6ea1SDimitry Andricmodule std_private_system_error_error_category  [system] { header "__system_error/error_category.h" }
1816*0fca6ea1SDimitry Andricmodule std_private_system_error_error_code      [system] {
1817*0fca6ea1SDimitry Andric  header "__system_error/error_code.h"
1818*0fca6ea1SDimitry Andric  export std_private_functional_hash
1819*0fca6ea1SDimitry Andric  export std_private_functional_unary_function
1820*0fca6ea1SDimitry Andric}
1821*0fca6ea1SDimitry Andricmodule std_private_system_error_error_condition [system] {
1822*0fca6ea1SDimitry Andric  header "__system_error/error_condition.h"
1823*0fca6ea1SDimitry Andric  export std_private_functional_hash
1824*0fca6ea1SDimitry Andric  export std_private_functional_unary_function
1825*0fca6ea1SDimitry Andric}
1826*0fca6ea1SDimitry Andricmodule std_private_system_error_system_error    [system] { header "__system_error/system_error.h" }
1827*0fca6ea1SDimitry Andric
1828*0fca6ea1SDimitry Andricmodule std_private_thread_formatter            [system] { header "__thread/formatter.h" }
1829*0fca6ea1SDimitry Andricmodule std_private_thread_id                   [system] { header "__thread/id.h" }
1830*0fca6ea1SDimitry Andricmodule std_private_thread_jthread              [system] {
1831*0fca6ea1SDimitry Andric  header "__thread/jthread.h"
1832*0fca6ea1SDimitry Andric  export *
1833*0fca6ea1SDimitry Andric}
1834*0fca6ea1SDimitry Andricmodule std_private_thread_poll_with_backoff    [system] { header "__thread/poll_with_backoff.h" }
1835*0fca6ea1SDimitry Andricmodule std_private_thread_support              [system] {
1836*0fca6ea1SDimitry Andric  header "__thread/support.h"
1837*0fca6ea1SDimitry Andric  export *
1838*0fca6ea1SDimitry Andric}
1839*0fca6ea1SDimitry Andricmodule std_private_thread_support_c11          [system] { textual header "__thread/support/c11.h" }
1840*0fca6ea1SDimitry Andricmodule std_private_thread_support_external     [system] { textual header "__thread/support/external.h" }
1841*0fca6ea1SDimitry Andricmodule std_private_thread_support_pthread      [system] { textual header "__thread/support/pthread.h" }
1842*0fca6ea1SDimitry Andricmodule std_private_thread_support_windows      [system] { textual header "__thread/support/windows.h" }
1843*0fca6ea1SDimitry Andricmodule std_private_thread_this_thread          [system] { header "__thread/this_thread.h" }
1844*0fca6ea1SDimitry Andricmodule std_private_thread_thread               [system] {
1845*0fca6ea1SDimitry Andric  header "__thread/thread.h"
1846*0fca6ea1SDimitry Andric  export *
1847*0fca6ea1SDimitry Andric}
1848*0fca6ea1SDimitry Andricmodule std_private_thread_timed_backoff_policy [system] { header "__thread/timed_backoff_policy.h" }
1849*0fca6ea1SDimitry Andric
1850*0fca6ea1SDimitry Andricmodule std_private_tuple_find_index             [system] { header "__tuple/find_index.h" }
1851*0fca6ea1SDimitry Andricmodule std_private_tuple_ignore                 [system] { header "__tuple/ignore.h" }
1852*0fca6ea1SDimitry Andricmodule std_private_tuple_make_tuple_types       [system] { header "__tuple/make_tuple_types.h" }
1853*0fca6ea1SDimitry Andricmodule std_private_tuple_tuple_like_no_subrange [system] {
1854*0fca6ea1SDimitry Andric  header "__tuple/tuple_like_no_subrange.h"
1855*0fca6ea1SDimitry Andric}
1856*0fca6ea1SDimitry Andricmodule std_private_tuple_sfinae_helpers         [system] { header "__tuple/sfinae_helpers.h" }
1857*0fca6ea1SDimitry Andricmodule std_private_tuple_tuple_element          [system] { header "__tuple/tuple_element.h" }
1858*0fca6ea1SDimitry Andricmodule std_private_tuple_tuple_fwd              [system] { header "__fwd/tuple.h" }
1859*0fca6ea1SDimitry Andricmodule std_private_tuple_tuple_indices          [system] { header "__tuple/tuple_indices.h" }
1860*0fca6ea1SDimitry Andricmodule std_private_tuple_tuple_like             [system] {
1861*0fca6ea1SDimitry Andric  header "__tuple/tuple_like.h"
1862*0fca6ea1SDimitry Andric  export *
1863*0fca6ea1SDimitry Andric}
1864*0fca6ea1SDimitry Andricmodule std_private_tuple_tuple_like_ext         [system] { header "__tuple/tuple_like_ext.h" }
1865*0fca6ea1SDimitry Andricmodule std_private_tuple_tuple_size             [system] { header "__tuple/tuple_size.h" }
1866*0fca6ea1SDimitry Andricmodule std_private_tuple_tuple_types            [system] { header "__tuple/tuple_types.h" }
1867*0fca6ea1SDimitry Andric
1868*0fca6ea1SDimitry Andricmodule std_private_type_traits_add_const                                 [system] { header "__type_traits/add_const.h" }
1869*0fca6ea1SDimitry Andricmodule std_private_type_traits_add_cv                                    [system] { header "__type_traits/add_cv.h" }
1870*0fca6ea1SDimitry Andricmodule std_private_type_traits_add_lvalue_reference                      [system] {
1871*0fca6ea1SDimitry Andric  header "__type_traits/add_lvalue_reference.h"
1872*0fca6ea1SDimitry Andric  export std_private_type_traits_is_referenceable
1873*0fca6ea1SDimitry Andric}
1874*0fca6ea1SDimitry Andricmodule std_private_type_traits_add_pointer                               [system] { header "__type_traits/add_pointer.h" }
1875*0fca6ea1SDimitry Andricmodule std_private_type_traits_add_rvalue_reference                      [system] { header "__type_traits/add_rvalue_reference.h" }
1876*0fca6ea1SDimitry Andricmodule std_private_type_traits_add_volatile                              [system] { header "__type_traits/add_volatile.h" }
1877*0fca6ea1SDimitry Andricmodule std_private_type_traits_aligned_storage                           [system] { header "__type_traits/aligned_storage.h" }
1878*0fca6ea1SDimitry Andricmodule std_private_type_traits_aligned_union                             [system] { header "__type_traits/aligned_union.h" }
1879*0fca6ea1SDimitry Andricmodule std_private_type_traits_alignment_of                              [system] { header "__type_traits/alignment_of.h" }
1880*0fca6ea1SDimitry Andricmodule std_private_type_traits_can_extract_key                           [system] { header "__type_traits/can_extract_key.h" }
1881*0fca6ea1SDimitry Andricmodule std_private_type_traits_common_reference                          [system] {
1882*0fca6ea1SDimitry Andric  header "__type_traits/common_reference.h"
1883*0fca6ea1SDimitry Andric  export std_private_type_traits_remove_cvref
1884*0fca6ea1SDimitry Andric}
1885*0fca6ea1SDimitry Andricmodule std_private_type_traits_common_type                               [system] {
1886*0fca6ea1SDimitry Andric  header "__type_traits/common_type.h"
1887*0fca6ea1SDimitry Andric  export std_private_utility_declval
1888*0fca6ea1SDimitry Andric}
1889*0fca6ea1SDimitry Andricmodule std_private_type_traits_conditional                               [system] { header "__type_traits/conditional.h" }
1890*0fca6ea1SDimitry Andricmodule std_private_type_traits_conjunction                               [system] { header "__type_traits/conjunction.h" }
1891*0fca6ea1SDimitry Andricmodule std_private_type_traits_copy_cv                                   [system] { header "__type_traits/copy_cv.h" }
1892*0fca6ea1SDimitry Andricmodule std_private_type_traits_copy_cvref                                [system] { header "__type_traits/copy_cvref.h" }
1893*0fca6ea1SDimitry Andricmodule std_private_type_traits_datasizeof                                [system] { header "__type_traits/datasizeof.h" }
1894*0fca6ea1SDimitry Andricmodule std_private_type_traits_decay                                     [system] {
1895*0fca6ea1SDimitry Andric  header "__type_traits/decay.h"
1896*0fca6ea1SDimitry Andric  export std_private_type_traits_add_pointer
1897*0fca6ea1SDimitry Andric}
1898*0fca6ea1SDimitry Andricmodule std_private_type_traits_dependent_type                            [system] { header "__type_traits/dependent_type.h" }
1899*0fca6ea1SDimitry Andricmodule std_private_type_traits_desugars_to                               [system] { header "__type_traits/desugars_to.h" }
1900*0fca6ea1SDimitry Andricmodule std_private_type_traits_disjunction                               [system] { header "__type_traits/disjunction.h" }
1901*0fca6ea1SDimitry Andricmodule std_private_type_traits_enable_if                                 [system] { header "__type_traits/enable_if.h" }
1902*0fca6ea1SDimitry Andricmodule std_private_type_traits_extent                                    [system] { header "__type_traits/extent.h" }
1903*0fca6ea1SDimitry Andricmodule std_private_type_traits_has_unique_object_representation          [system] { header "__type_traits/has_unique_object_representation.h" }
1904*0fca6ea1SDimitry Andricmodule std_private_type_traits_has_virtual_destructor                    [system] { header "__type_traits/has_virtual_destructor.h" }
1905*0fca6ea1SDimitry Andricmodule std_private_type_traits_integral_constant                         [system] { header "__type_traits/integral_constant.h" }
1906*0fca6ea1SDimitry Andricmodule std_private_type_traits_invoke                                    [system] {
1907*0fca6ea1SDimitry Andric  header "__type_traits/invoke.h"
1908*0fca6ea1SDimitry Andric  export std_private_type_traits_conditional
1909*0fca6ea1SDimitry Andric  export std_private_type_traits_decay
1910*0fca6ea1SDimitry Andric  export std_private_type_traits_decay
1911*0fca6ea1SDimitry Andric  export std_private_type_traits_enable_if
1912*0fca6ea1SDimitry Andric  export std_private_type_traits_is_base_of
1913*0fca6ea1SDimitry Andric  export std_private_type_traits_is_core_convertible
1914*0fca6ea1SDimitry Andric  export std_private_type_traits_is_reference_wrapper
1915*0fca6ea1SDimitry Andric  export std_private_type_traits_is_same
1916*0fca6ea1SDimitry Andric  export std_private_type_traits_is_void
1917*0fca6ea1SDimitry Andric  export std_private_type_traits_nat
1918*0fca6ea1SDimitry Andric  export std_private_type_traits_remove_cv
1919*0fca6ea1SDimitry Andric}
1920*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_abstract                               [system] { header "__type_traits/is_abstract.h" }
1921*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_aggregate                              [system] { header "__type_traits/is_aggregate.h" }
1922*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_allocator                              [system] { header "__type_traits/is_allocator.h" }
1923*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_always_bitcastable                     [system] { header "__type_traits/is_always_bitcastable.h" }
1924*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_arithmetic                             [system] {
1925*0fca6ea1SDimitry Andric  header "__type_traits/is_arithmetic.h"
1926*0fca6ea1SDimitry Andric  export std_private_type_traits_integral_constant
1927*0fca6ea1SDimitry Andric}
1928*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_array                                  [system] {
1929*0fca6ea1SDimitry Andric  header "__type_traits/is_array.h"
1930*0fca6ea1SDimitry Andric  export std_private_type_traits_integral_constant
1931*0fca6ea1SDimitry Andric}
1932*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_assignable                             [system] { header "__type_traits/is_assignable.h" }
1933*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_base_of                                [system] { header "__type_traits/is_base_of.h" }
1934*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_bounded_array                          [system] { header "__type_traits/is_bounded_array.h" }
1935*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_callable                               [system] {
1936*0fca6ea1SDimitry Andric  header "__type_traits/is_callable.h"
1937*0fca6ea1SDimitry Andric  export std_private_type_traits_integral_constant
1938*0fca6ea1SDimitry Andric}
1939*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_char_like_type                         [system] { header "__type_traits/is_char_like_type.h" }
1940*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_class                                  [system] { header "__type_traits/is_class.h" }
1941*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_compound                               [system] { header "__type_traits/is_compound.h" }
1942*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_const                                  [system] { header "__type_traits/is_const.h" }
1943*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_constant_evaluated                     [system] { header "__type_traits/is_constant_evaluated.h" }
1944*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_constructible                          [system] { header "__type_traits/is_constructible.h" }
1945*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_convertible                            [system] {
1946*0fca6ea1SDimitry Andric  header "__type_traits/is_convertible.h"
1947*0fca6ea1SDimitry Andric  export std_private_type_traits_is_array
1948*0fca6ea1SDimitry Andric}
1949*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_copy_assignable                        [system] { header "__type_traits/is_copy_assignable.h" }
1950*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_copy_constructible                     [system] { header "__type_traits/is_copy_constructible.h" }
1951*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_core_convertible                       [system] {
1952*0fca6ea1SDimitry Andric  header "__type_traits/is_core_convertible.h"
1953*0fca6ea1SDimitry Andric  export std_private_type_traits_integral_constant
1954*0fca6ea1SDimitry Andric}
1955*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_destructible                           [system] { header "__type_traits/is_destructible.h" }
1956*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_empty                                  [system] { header "__type_traits/is_empty.h" }
1957*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_enum                                   [system] {
1958*0fca6ea1SDimitry Andric  header "__type_traits/is_enum.h"
1959*0fca6ea1SDimitry Andric  export std_private_type_traits_integral_constant
1960*0fca6ea1SDimitry Andric}
1961*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_equality_comparable                    [system] {
1962*0fca6ea1SDimitry Andric  header "__type_traits/is_equality_comparable.h"
1963*0fca6ea1SDimitry Andric  export std_private_type_traits_integral_constant
1964*0fca6ea1SDimitry Andric}
1965*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_execution_policy                       [system] {
1966*0fca6ea1SDimitry Andric  header "__type_traits/is_execution_policy.h"
1967*0fca6ea1SDimitry Andric  export std_private_type_traits_remove_cvref
1968*0fca6ea1SDimitry Andric}
1969*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_final                                  [system] { header "__type_traits/is_final.h" }
1970*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_floating_point                         [system] { header "__type_traits/is_floating_point.h" }
1971*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_function                               [system] { header "__type_traits/is_function.h" }
1972*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_fundamental                            [system] { header "__type_traits/is_fundamental.h" }
1973*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_implicitly_default_constructible       [system] {
1974*0fca6ea1SDimitry Andric  header "__type_traits/is_implicitly_default_constructible.h"
1975*0fca6ea1SDimitry Andric  export std_private_type_traits_integral_constant
1976*0fca6ea1SDimitry Andric}
1977*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_integral                               [system] { header "__type_traits/is_integral.h" }
1978*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_literal_type                           [system] { header "__type_traits/is_literal_type.h" }
1979*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_member_pointer                         [system] { header "__type_traits/is_member_pointer.h" }
1980*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_nothrow_assignable                     [system] { header "__type_traits/is_nothrow_assignable.h" }
1981*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_nothrow_constructible                  [system] {
1982*0fca6ea1SDimitry Andric  header "__type_traits/is_nothrow_constructible.h"
1983*0fca6ea1SDimitry Andric  export std_private_type_traits_integral_constant
1984*0fca6ea1SDimitry Andric}
1985*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_nothrow_convertible                    [system] { header "__type_traits/is_nothrow_convertible.h" }
1986*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_nothrow_destructible                   [system] {
1987*0fca6ea1SDimitry Andric  header "__type_traits/is_nothrow_destructible.h"
1988*0fca6ea1SDimitry Andric  export std_private_type_traits_is_destructible
1989*0fca6ea1SDimitry Andric}
1990*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_null_pointer                           [system] {
1991*0fca6ea1SDimitry Andric  header "__type_traits/is_null_pointer.h"
1992*0fca6ea1SDimitry Andric  export std_cstddef
1993*0fca6ea1SDimitry Andric}
1994*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_object                                 [system] {
1995*0fca6ea1SDimitry Andric  header "__type_traits/is_object.h"
1996*0fca6ea1SDimitry Andric  export std_private_type_traits_is_scalar
1997*0fca6ea1SDimitry Andric}
1998*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_pod                                    [system] { header "__type_traits/is_pod.h" }
1999*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_pointer                                [system] { header "__type_traits/is_pointer.h" }
2000*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_polymorphic                            [system] { header "__type_traits/is_polymorphic.h" }
2001*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_primary_template                       [system] {
2002*0fca6ea1SDimitry Andric  header "__type_traits/is_primary_template.h"
2003*0fca6ea1SDimitry Andric  export std_private_type_traits_enable_if
2004*0fca6ea1SDimitry Andric}
2005*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_reference                              [system] { header "__type_traits/is_reference.h" }
2006*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_reference_wrapper                      [system] { header "__type_traits/is_reference_wrapper.h" }
2007*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_referenceable                          [system] { header "__type_traits/is_referenceable.h" }
2008*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_same                                   [system] {
2009*0fca6ea1SDimitry Andric  header "__type_traits/is_same.h"
2010*0fca6ea1SDimitry Andric  export std_private_type_traits_integral_constant
2011*0fca6ea1SDimitry Andric}
2012*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_scalar                                 [system] {
2013*0fca6ea1SDimitry Andric  header "__type_traits/is_scalar.h"
2014*0fca6ea1SDimitry Andric  export std_private_type_traits_is_null_pointer
2015*0fca6ea1SDimitry Andric}
2016*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_signed                                 [system] { header "__type_traits/is_signed.h" }
2017*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_signed_integer                         [system] { header "__type_traits/is_signed_integer.h" }
2018*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_specialization                         [system] { header "__type_traits/is_specialization.h" }
2019*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_standard_layout                        [system] { header "__type_traits/is_standard_layout.h" }
2020*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_swappable                              [system] {
2021*0fca6ea1SDimitry Andric  header "__type_traits/is_swappable.h"
2022*0fca6ea1SDimitry Andric  export std_private_type_traits_is_move_constructible
2023*0fca6ea1SDimitry Andric}
2024*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_trivial                                [system] { header "__type_traits/is_trivial.h" }
2025*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_trivially_assignable                   [system] { header "__type_traits/is_trivially_assignable.h" }
2026*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_trivially_constructible                [system] { header "__type_traits/is_trivially_constructible.h" }
2027*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_trivially_copyable                     [system] { header "__type_traits/is_trivially_copyable.h" }
2028*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_trivially_destructible                 [system] { header "__type_traits/is_trivially_destructible.h" }
2029*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_trivially_lexicographically_comparable [system] { header "__type_traits/is_trivially_lexicographically_comparable.h" }
2030*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_trivially_relocatable                  [system] { header "__type_traits/is_trivially_relocatable.h" }
2031*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_unbounded_array                        [system] { header "__type_traits/is_unbounded_array.h" }
2032*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_union                                  [system] { header "__type_traits/is_union.h" }
2033*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_unsigned                               [system] { header "__type_traits/is_unsigned.h" }
2034*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_unsigned_integer                       [system] { header "__type_traits/is_unsigned_integer.h" }
2035*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_valid_expansion                        [system] { header "__type_traits/is_valid_expansion.h" }
2036*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_void                                   [system] {
2037*0fca6ea1SDimitry Andric  header "__type_traits/is_void.h"
2038*0fca6ea1SDimitry Andric  export std_private_type_traits_integral_constant
2039*0fca6ea1SDimitry Andric}
2040*0fca6ea1SDimitry Andricmodule std_private_type_traits_is_volatile                               [system] { header "__type_traits/is_volatile.h" }
2041*0fca6ea1SDimitry Andricmodule std_private_type_traits_lazy                                      [system] { header "__type_traits/lazy.h" }
2042*0fca6ea1SDimitry Andricmodule std_private_type_traits_make_32_64_or_128_bit                     [system] { header "__type_traits/make_32_64_or_128_bit.h" }
2043*0fca6ea1SDimitry Andricmodule std_private_type_traits_make_const_lvalue_ref                     [system] { header "__type_traits/make_const_lvalue_ref.h" }
2044*0fca6ea1SDimitry Andricmodule std_private_type_traits_make_signed                               [system] { header "__type_traits/make_signed.h" }
2045*0fca6ea1SDimitry Andricmodule std_private_type_traits_make_unsigned                             [system] {
2046*0fca6ea1SDimitry Andric  header "__type_traits/make_unsigned.h"
2047*0fca6ea1SDimitry Andric  export std_private_type_traits_is_unsigned
2048*0fca6ea1SDimitry Andric}
2049*0fca6ea1SDimitry Andricmodule std_private_type_traits_maybe_const                               [system] { header "__type_traits/maybe_const.h" }
2050*0fca6ea1SDimitry Andricmodule std_private_type_traits_nat                                       [system] { header "__type_traits/nat.h" }
2051*0fca6ea1SDimitry Andricmodule std_private_type_traits_negation                                  [system] { header "__type_traits/negation.h" }
2052*0fca6ea1SDimitry Andricmodule std_private_type_traits_noexcept_move_assign_container            [system] { header "__type_traits/noexcept_move_assign_container.h" }
2053*0fca6ea1SDimitry Andricmodule std_private_type_traits_promote                                   [system] { header "__type_traits/promote.h" }
2054*0fca6ea1SDimitry Andricmodule std_private_type_traits_rank                                      [system] { header "__type_traits/rank.h" }
2055*0fca6ea1SDimitry Andricmodule std_private_type_traits_remove_all_extents                        [system] { header "__type_traits/remove_all_extents.h" }
2056*0fca6ea1SDimitry Andricmodule std_private_type_traits_remove_const                              [system] { header "__type_traits/remove_const.h" }
2057*0fca6ea1SDimitry Andricmodule std_private_type_traits_remove_const_ref                          [system] { header "__type_traits/remove_const_ref.h" }
2058*0fca6ea1SDimitry Andricmodule std_private_type_traits_remove_cv                                 [system] {
2059*0fca6ea1SDimitry Andric  header "__type_traits/remove_cv.h"
2060*0fca6ea1SDimitry Andric  export std_private_type_traits_remove_const
2061*0fca6ea1SDimitry Andric  export std_private_type_traits_remove_volatile
2062*0fca6ea1SDimitry Andric}
2063*0fca6ea1SDimitry Andricmodule std_private_type_traits_remove_cvref                              [system] { header "__type_traits/remove_cvref.h" }
2064*0fca6ea1SDimitry Andricmodule std_private_type_traits_remove_extent                             [system] { header "__type_traits/remove_extent.h" }
2065*0fca6ea1SDimitry Andricmodule std_private_type_traits_remove_pointer                            [system] { header "__type_traits/remove_pointer.h" }
2066*0fca6ea1SDimitry Andricmodule std_private_type_traits_remove_reference                          [system] { header "__type_traits/remove_reference.h" }
2067*0fca6ea1SDimitry Andricmodule std_private_type_traits_remove_volatile                           [system] { header "__type_traits/remove_volatile.h" }
2068*0fca6ea1SDimitry Andricmodule std_private_type_traits_result_of                                 [system] { header "__type_traits/result_of.h" }
2069*0fca6ea1SDimitry Andricmodule std_private_type_traits_strip_signature                           [system] { header "__type_traits/strip_signature.h" }
2070*0fca6ea1SDimitry Andricmodule std_private_type_traits_type_identity                             [system] { header "__type_traits/type_identity.h" }
2071*0fca6ea1SDimitry Andricmodule std_private_type_traits_type_list                                 [system] { header "__type_traits/type_list.h" }
2072*0fca6ea1SDimitry Andricmodule std_private_type_traits_underlying_type                           [system] {
2073*0fca6ea1SDimitry Andric  header "__type_traits/underlying_type.h"
2074*0fca6ea1SDimitry Andric  export std_private_type_traits_is_enum
2075*0fca6ea1SDimitry Andric}
2076*0fca6ea1SDimitry Andricmodule std_private_type_traits_unwrap_ref                                [system] { header "__type_traits/unwrap_ref.h" }
2077*0fca6ea1SDimitry Andricmodule std_private_type_traits_void_t                                    [system] { header "__type_traits/void_t.h" }
2078*0fca6ea1SDimitry Andric
2079*0fca6ea1SDimitry Andricmodule std_private_utility_as_const               [system] { header "__utility/as_const.h" }
2080*0fca6ea1SDimitry Andricmodule std_private_utility_as_lvalue              [system] { header "__utility/as_lvalue.h" }
2081*0fca6ea1SDimitry Andricmodule std_private_utility_auto_cast              [system] {
2082*0fca6ea1SDimitry Andric  header "__utility/auto_cast.h"
2083*0fca6ea1SDimitry Andric  export std_private_type_traits_decay
2084*0fca6ea1SDimitry Andric}
2085*0fca6ea1SDimitry Andricmodule std_private_utility_cmp                    [system] {
2086*0fca6ea1SDimitry Andric  header "__utility/cmp.h"
2087*0fca6ea1SDimitry Andric  export std_private_type_traits_make_unsigned
2088*0fca6ea1SDimitry Andric}
2089*0fca6ea1SDimitry Andricmodule std_private_utility_convert_to_integral    [system] { header "__utility/convert_to_integral.h" }
2090*0fca6ea1SDimitry Andricmodule std_private_utility_declval                [system] { header "__utility/declval.h" }
2091*0fca6ea1SDimitry Andricmodule std_private_utility_empty                  [system] { header "__utility/empty.h" }
2092*0fca6ea1SDimitry Andricmodule std_private_utility_exception_guard        [system] { header "__utility/exception_guard.h" }
2093*0fca6ea1SDimitry Andricmodule std_private_utility_exchange               [system] { header "__utility/exchange.h" }
2094*0fca6ea1SDimitry Andricmodule std_private_utility_forward                [system] { header "__utility/forward.h" }
2095*0fca6ea1SDimitry Andricmodule std_private_utility_forward_like           [system] { header "__utility/forward_like.h" }
2096*0fca6ea1SDimitry Andricmodule std_private_utility_in_place               [system] { header "__utility/in_place.h" }
2097*0fca6ea1SDimitry Andricmodule std_private_utility_integer_sequence       [system] { header "__utility/integer_sequence.h" }
2098*0fca6ea1SDimitry Andricmodule std_private_utility_is_pointer_in_range    [system] { header "__utility/is_pointer_in_range.h" }
2099*0fca6ea1SDimitry Andricmodule std_private_utility_is_valid_range         [system] { header "__utility/is_valid_range.h" }
2100*0fca6ea1SDimitry Andricmodule std_private_utility_move                   [system] {
2101*0fca6ea1SDimitry Andric  header "__utility/move.h"
2102*0fca6ea1SDimitry Andric  export std_private_type_traits_is_copy_constructible
2103*0fca6ea1SDimitry Andric  export std_private_type_traits_is_nothrow_move_constructible
2104*0fca6ea1SDimitry Andric  export std_private_type_traits_remove_reference
2105*0fca6ea1SDimitry Andric}
2106*0fca6ea1SDimitry Andricmodule std_private_utility_no_destroy             [system] { header "__utility/no_destroy.h" }
2107*0fca6ea1SDimitry Andricmodule std_private_utility_pair                   [system] {
2108*0fca6ea1SDimitry Andric  header "__utility/pair.h"
2109*0fca6ea1SDimitry Andric  export std_private_ranges_subrange_fwd
2110*0fca6ea1SDimitry Andric  export std_private_tuple_pair_like
2111*0fca6ea1SDimitry Andric  export std_private_type_traits_is_assignable
2112*0fca6ea1SDimitry Andric  export std_private_type_traits_is_constructible
2113*0fca6ea1SDimitry Andric  export std_private_type_traits_is_convertible
2114*0fca6ea1SDimitry Andric  export std_private_type_traits_is_copy_assignable
2115*0fca6ea1SDimitry Andric  export std_private_type_traits_is_move_assignable
2116*0fca6ea1SDimitry Andric  export std_private_type_traits_is_nothrow_copy_constructible
2117*0fca6ea1SDimitry Andric  export std_private_type_traits_is_nothrow_default_constructible
2118*0fca6ea1SDimitry Andric  export std_private_type_traits_is_nothrow_move_assignable
2119*0fca6ea1SDimitry Andric  export std_private_utility_pair_fwd
2120*0fca6ea1SDimitry Andric}
2121*0fca6ea1SDimitry Andricmodule std_private_utility_pair_fwd                [system] { header "__fwd/pair.h" }
2122*0fca6ea1SDimitry Andricmodule std_private_utility_piecewise_construct     [system] { header "__utility/piecewise_construct.h" }
2123*0fca6ea1SDimitry Andricmodule std_private_utility_priority_tag            [system] { header "__utility/priority_tag.h" }
2124*0fca6ea1SDimitry Andricmodule std_private_utility_private_constructor_tag [system] { header "__utility/private_constructor_tag.h" }
2125*0fca6ea1SDimitry Andricmodule std_private_utility_rel_ops                 [system] { header "__utility/rel_ops.h" }
2126*0fca6ea1SDimitry Andricmodule std_private_utility_small_buffer            [system] { header "__utility/small_buffer.h" }
2127*0fca6ea1SDimitry Andricmodule std_private_utility_swap                    [system] {
2128*0fca6ea1SDimitry Andric  header "__utility/swap.h"
2129*0fca6ea1SDimitry Andric  export std_private_type_traits_is_swappable
2130*0fca6ea1SDimitry Andric}
2131*0fca6ea1SDimitry Andricmodule std_private_utility_to_underlying           [system] { header "__utility/to_underlying.h" }
2132*0fca6ea1SDimitry Andricmodule std_private_utility_unreachable             [system] { header "__utility/unreachable.h" }
2133*0fca6ea1SDimitry Andric
2134*0fca6ea1SDimitry Andricmodule std_private_variant_monostate               [system] { header "__variant/monostate.h" }
2135*0fca6ea1SDimitry Andric
2136*0fca6ea1SDimitry Andricmodule std_private_vector_fwd                      [system] { header "__fwd/vector.h" }
2137