StdSymbolMap.inc
60.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
//===-- gen_std.py generated file -------------------------------*- C++ -*-===//
//
// Used to build a lookup table (qualified names => include headers) for CPP
// Standard Library symbols.
//
// Automatically generated file, DO NOT EDIT!
//
// Generated from cppreference offline HTML book (modified on 2018-10-28).
//===----------------------------------------------------------------------===//
SYMBOL(Assignable, std::, <concepts>)
SYMBOL(Boolean, std::, <concepts>)
SYMBOL(Common, std::, <concepts>)
SYMBOL(CommonReference, std::, <concepts>)
SYMBOL(Constructible, std::, <concepts>)
SYMBOL(ConvertibleTo, std::, <concepts>)
SYMBOL(CopyConstructible, std::, <concepts>)
SYMBOL(Copyable, std::, <concepts>)
SYMBOL(DefaultConstructible, std::, <concepts>)
SYMBOL(DerivedFrom, std::, <concepts>)
SYMBOL(Destructible, std::, <concepts>)
SYMBOL(EqualityComparable, std::, <concepts>)
SYMBOL(EqualityComparableWith, std::, <concepts>)
SYMBOL(FILE, std::, <cstdio>)
SYMBOL(Integral, std::, <concepts>)
SYMBOL(Invocable, std::, <concepts>)
SYMBOL(Movable, std::, <concepts>)
SYMBOL(MoveConstructible, std::, <concepts>)
SYMBOL(Predicate, std::, <concepts>)
SYMBOL(Regular, std::, <concepts>)
SYMBOL(RegularInvocable, std::, <concepts>)
SYMBOL(Relation, std::, <concepts>)
SYMBOL(Same, std::, <concepts>)
SYMBOL(Semiregular, std::, <concepts>)
SYMBOL(SignedIntegral, std::, <concepts>)
SYMBOL(StrictTotallyOrdered, std::, <concepts>)
SYMBOL(StrictTotallyOrderedWith, std::, <concepts>)
SYMBOL(StrictWeakOrder, std::, <concepts>)
SYMBOL(Swappable, std::, <concepts>)
SYMBOL(SwappableWith, std::, <concepts>)
SYMBOL(UniformRandomBitGenerator, std::, <random>)
SYMBOL(UnsignedIntegral, std::, <concepts>)
SYMBOL(_Exit, std::, <cstdlib>)
SYMBOL(accumulate, std::, <numeric>)
SYMBOL(acos, std::, <cmath>)
SYMBOL(acosh, std::, <cmath>)
SYMBOL(add_const, std::, <type_traits>)
SYMBOL(add_const_t, std::, <type_traits>)
SYMBOL(add_cv, std::, <type_traits>)
SYMBOL(add_cv_t, std::, <type_traits>)
SYMBOL(add_lvalue_reference, std::, <type_traits>)
SYMBOL(add_lvalue_reference_t, std::, <type_traits>)
SYMBOL(add_pointer, std::, <type_traits>)
SYMBOL(add_pointer_t, std::, <type_traits>)
SYMBOL(add_rvalue_reference, std::, <type_traits>)
SYMBOL(add_rvalue_reference_t, std::, <type_traits>)
SYMBOL(add_volatile, std::, <type_traits>)
SYMBOL(add_volatile_t, std::, <type_traits>)
SYMBOL(addressof, std::, <memory>)
SYMBOL(adjacent_difference, std::, <numeric>)
SYMBOL(adjacent_find, std::, <algorithm>)
SYMBOL(adopt_lock, std::, <mutex>)
SYMBOL(adopt_lock_t, std::, <mutex>)
SYMBOL(advance, std::, <iterator>)
SYMBOL(align, std::, <memory>)
SYMBOL(align_val_t, std::, <new>)
SYMBOL(aligned_alloc, std::, <cstdlib>)
SYMBOL(aligned_storage, std::, <type_traits>)
SYMBOL(aligned_storage_t, std::, <type_traits>)
SYMBOL(aligned_union, std::, <type_traits>)
SYMBOL(aligned_union_t, std::, <type_traits>)
SYMBOL(alignment_of, std::, <type_traits>)
SYMBOL(alignment_of_v, std::, <type_traits>)
SYMBOL(all_of, std::, <algorithm>)
SYMBOL(allocate_shared, std::, <memory>)
SYMBOL(allocator, std::, <memory>)
SYMBOL(allocator_arg, std::, <memory>)
SYMBOL(allocator_arg_t, std::, <memory>)
SYMBOL(allocator_traits, std::, <memory>)
SYMBOL(any, std::, <any>)
SYMBOL(any_of, std::, <algorithm>)
SYMBOL(apply, std::, <tuple>)
SYMBOL(arg, std::, <complex>)
SYMBOL(array, std::, <array>)
SYMBOL(as_const, std::, <utility>)
SYMBOL(asctime, std::, <ctime>)
SYMBOL(asin, std::, <cmath>)
SYMBOL(asinh, std::, <cmath>)
SYMBOL(async, std::, <future>)
SYMBOL(at_quick_exit, std::, <cstdlib>)
SYMBOL(atan, std::, <cmath>)
SYMBOL(atan2, std::, <cmath>)
SYMBOL(atanh, std::, <cmath>)
SYMBOL(atexit, std::, <cstdlib>)
SYMBOL(atof, std::, <cstdlib>)
SYMBOL(atoi, std::, <cstdlib>)
SYMBOL(atol, std::, <cstdlib>)
SYMBOL(atoll, std::, <cstdlib>)
SYMBOL(atomic_compare_exchange_strong, std::, <atomic>)
SYMBOL(atomic_compare_exchange_strong_explicit, std::, <atomic>)
SYMBOL(atomic_compare_exchange_weak, std::, <atomic>)
SYMBOL(atomic_compare_exchange_weak_explicit, std::, <atomic>)
SYMBOL(atomic_exchange, std::, <atomic>)
SYMBOL(atomic_exchange_explicit, std::, <atomic>)
SYMBOL(atomic_fetch_add, std::, <atomic>)
SYMBOL(atomic_fetch_add_explicit, std::, <atomic>)
SYMBOL(atomic_fetch_and, std::, <atomic>)
SYMBOL(atomic_fetch_and_explicit, std::, <atomic>)
SYMBOL(atomic_fetch_or, std::, <atomic>)
SYMBOL(atomic_fetch_or_explicit, std::, <atomic>)
SYMBOL(atomic_fetch_sub, std::, <atomic>)
SYMBOL(atomic_fetch_sub_explicit, std::, <atomic>)
SYMBOL(atomic_fetch_xor, std::, <atomic>)
SYMBOL(atomic_fetch_xor_explicit, std::, <atomic>)
SYMBOL(atomic_flag, std::, <atomic>)
SYMBOL(atomic_flag_clear, std::, <atomic>)
SYMBOL(atomic_flag_clear_explicit, std::, <atomic>)
SYMBOL(atomic_flag_test_and_set, std::, <atomic>)
SYMBOL(atomic_flag_test_and_set_explicit, std::, <atomic>)
SYMBOL(atomic_init, std::, <atomic>)
SYMBOL(atomic_is_lockfree, std::, <atomic>)
SYMBOL(atomic_load, std::, <atomic>)
SYMBOL(atomic_load_explicit, std::, <atomic>)
SYMBOL(atomic_ref, std::, <atomic>)
SYMBOL(atomic_signal_fence, std::, <atomic>)
SYMBOL(atomic_store, std::, <atomic>)
SYMBOL(atomic_store_explicit, std::, <atomic>)
SYMBOL(atomic_thread_fence, std::, <atomic>)
SYMBOL(atto, std::, <ratio>)
SYMBOL(auto_ptr, std::, <memory>)
SYMBOL(back_insert_iterator, std::, <iterator>)
SYMBOL(back_inserter, std::, <iterator>)
SYMBOL(bad_alloc, std::, <new>)
SYMBOL(bad_any_cast, std::, <any>)
SYMBOL(bad_array_new_length, std::, <new>)
SYMBOL(bad_cast, std::, <typeinfo>)
SYMBOL(bad_exception, std::, <exception>)
SYMBOL(bad_function_call, std::, <functional>)
SYMBOL(bad_optional_access, std::, <optional>)
SYMBOL(bad_typeid, std::, <typeinfo>)
SYMBOL(bad_variant_access, std::, <variant>)
SYMBOL(bad_weak_ptr, std::, <memory>)
SYMBOL(basic_common_reference, std::, <type_traits>)
SYMBOL(basic_filebuf, std::, <fstream>)
SYMBOL(basic_fstream, std::, <fstream>)
SYMBOL(basic_ifstream, std::, <fstream>)
SYMBOL(basic_ios, std::, <ios>)
SYMBOL(basic_iostream, std::, <istream>)
SYMBOL(basic_istream, std::, <istream>)
SYMBOL(basic_istringstream, std::, <sstream>)
SYMBOL(basic_ofstream, std::, <fstream>)
SYMBOL(basic_ostream, std::, <ostream>)
SYMBOL(basic_ostringstream, std::, <sstream>)
SYMBOL(basic_osyncstream, std::, <syncstream>)
SYMBOL(basic_regex, std::, <regex>)
SYMBOL(basic_streambuf, std::, <streambuf>)
SYMBOL(basic_string, std::, <string>)
SYMBOL(basic_string_view, std::, <string_view>)
SYMBOL(basic_stringbuf, std::, <sstream>)
SYMBOL(basic_stringstream, std::, <sstream>)
SYMBOL(basic_syncbuf, std::, <syncstream>)
SYMBOL(begin, std::, <iterator>)
SYMBOL(bernoulli_distribution, std::, <random>)
SYMBOL(bidirectional_iterator_tag, std::, <iterator>)
SYMBOL(binary_search, std::, <algorithm>)
SYMBOL(bind, std::, <functional>)
SYMBOL(binomial_distribution, std::, <random>)
SYMBOL(bit_and, std::, <functional>)
SYMBOL(bit_cast, std::, <bit>)
SYMBOL(bit_not, std::, <functional>)
SYMBOL(bit_or, std::, <functional>)
SYMBOL(bit_xor, std::, <functional>)
SYMBOL(bitset, std::, <bitset>)
SYMBOL(bool_constant, std::, <type_traits>)
SYMBOL(boolalpha, std::, <ios>)
SYMBOL(boyer_moore_horspool_searcher, std::, <functional>)
SYMBOL(boyer_moore_searcher, std::, <functional>)
SYMBOL(bsearch, std::, <cstdlib>)
SYMBOL(btowc, std::, <cwchar>)
SYMBOL(byte, std::, <cstddef>)
SYMBOL(c16rtomb, std::, <cuchar>)
SYMBOL(c32rtomb, std::, <cuchar>)
SYMBOL(call_once, std::, <mutex>)
SYMBOL(calloc, std::, <cstdlib>)
SYMBOL(cauchy_distribution, std::, <random>)
SYMBOL(cbegin, std::, <iterator>)
SYMBOL(cbrt, std::, <cmath>)
SYMBOL(ceil, std::, <cmath>)
SYMBOL(ceil2, std::, <bit>)
SYMBOL(cend, std::, <iterator>)
SYMBOL(centi, std::, <ratio>)
SYMBOL(cerr, std::, <iostream>)
SYMBOL(char_traits, std::, <string>)
SYMBOL(chars_format, std::, <charconv>)
SYMBOL(chi_squared_distribution, std::, <random>)
SYMBOL(cin, std::, <iostream>)
SYMBOL(clamp, std::, <algorithm>)
SYMBOL(clearerr, std::, <cstdio>)
SYMBOL(clock, std::, <ctime>)
SYMBOL(clock_t, std::, <ctime>)
SYMBOL(clog, std::, <iostream>)
SYMBOL(cmatch, std::, <regex>)
SYMBOL(codecvt, std::, <locale>)
SYMBOL(codecvt_base, std::, <locale>)
SYMBOL(codecvt_byname, std::, <locale>)
SYMBOL(codecvt_mode, std::, <codecvt>)
SYMBOL(codecvt_utf16, std::, <codecvt>)
SYMBOL(codecvt_utf8, std::, <codecvt>)
SYMBOL(codecvt_utf8_utf16, std::, <codecvt>)
SYMBOL(collate, std::, <locale>)
SYMBOL(collate_byname, std::, <locale>)
SYMBOL(common_comparison_category, std::, <compare>)
SYMBOL(common_comparison_category_t, std::, <compare>)
SYMBOL(common_reference, std::, <type_traits>)
SYMBOL(common_reference_t, std::, <type_traits>)
SYMBOL(common_type, std::, <type_traits>)
SYMBOL(common_type_t, std::, <type_traits>)
SYMBOL(compare_3way, std::, <algorithm>)
SYMBOL(complex, std::, <complex>)
SYMBOL(condition_variable, std::, <condition_variable>)
SYMBOL(condition_variable_any, std::, <condition_variable>)
SYMBOL(conditional, std::, <type_traits>)
SYMBOL(conditional_t, std::, <type_traits>)
SYMBOL(conj, std::, <complex>)
SYMBOL(conjunction, std::, <type_traits>)
SYMBOL(conjunction_v, std::, <type_traits>)
SYMBOL(const_pointer_cast, std::, <memory>)
SYMBOL(contract_violation, std::, <contract>)
SYMBOL(copy, std::, <algorithm>)
SYMBOL(copy_backward, std::, <algorithm>)
SYMBOL(copy_if, std::, <algorithm>)
SYMBOL(copy_n, std::, <algorithm>)
SYMBOL(copysign, std::, <cmath>)
SYMBOL(cos, std::, <cmath>)
SYMBOL(cosh, std::, <cmath>)
SYMBOL(count, std::, <algorithm>)
SYMBOL(count_if, std::, <algorithm>)
SYMBOL(cout, std::, <iostream>)
SYMBOL(crbegin, std::, <iterator>)
SYMBOL(cref, std::, <functional>)
SYMBOL(cregex_iterator, std::, <regex>)
SYMBOL(cregex_token_iterator, std::, <regex>)
SYMBOL(crend, std::, <iterator>)
SYMBOL(csub_match, std::, <regex>)
SYMBOL(ctime, std::, <ctime>)
SYMBOL(ctype, std::, <locale>)
SYMBOL(ctype_base, std::, <locale>)
SYMBOL(ctype_byname, std::, <locale>)
SYMBOL(current_exception, std::, <exception>)
SYMBOL(cv_status, std::, <condition_variable>)
SYMBOL(data, std::, <iterator>)
SYMBOL(dec, std::, <ios>)
SYMBOL(deca, std::, <ratio>)
SYMBOL(decay, std::, <type_traits>)
SYMBOL(decay_t, std::, <type_traits>)
SYMBOL(deci, std::, <ratio>)
SYMBOL(declare_no_pointers, std::, <memory>)
SYMBOL(declare_reachable, std::, <memory>)
SYMBOL(declval, std::, <utility>)
SYMBOL(default_delete, std::, <memory>)
SYMBOL(default_random_engine, std::, <random>)
SYMBOL(default_searcher, std::, <functional>)
SYMBOL(defaultfloat, std::, <ios>)
SYMBOL(defer_lock, std::, <mutex>)
SYMBOL(defer_lock_t, std::, <mutex>)
SYMBOL(denorm_absent, std::, <limits>)
SYMBOL(denorm_indeterminate, std::, <limits>)
SYMBOL(denorm_present, std::, <limits>)
SYMBOL(deque, std::, <deque>)
SYMBOL(destroy, std::, <memory>)
SYMBOL(destroy_at, std::, <memory>)
SYMBOL(destroy_n, std::, <memory>)
SYMBOL(destroying_delete, std::, <new>)
SYMBOL(destroying_delete_t, std::, <new>)
SYMBOL(difftime, std::, <ctime>)
SYMBOL(discard_block_engine, std::, <random>)
SYMBOL(discrete_distribution, std::, <random>)
SYMBOL(disjunction, std::, <type_traits>)
SYMBOL(disjunction_v, std::, <type_traits>)
SYMBOL(distance, std::, <iterator>)
SYMBOL(div_t, std::, <cstdlib>)
SYMBOL(divides, std::, <functional>)
SYMBOL(domain_error, std::, <stdexcept>)
SYMBOL(double_t, std::, <cmath>)
SYMBOL(dynamic_extent, std::, <span>)
SYMBOL(dynamic_pointer_cast, std::, <memory>)
SYMBOL(emit_on_flush, std::, <ostream>)
SYMBOL(empty, std::, <iterator>)
SYMBOL(enable_if, std::, <type_traits>)
SYMBOL(enable_if_t, std::, <type_traits>)
SYMBOL(enable_shared_from_this, std::, <memory>)
SYMBOL(end, std::, <iterator>)
SYMBOL(endian, std::, <type_traits>)
SYMBOL(endl, std::, <ostream>)
SYMBOL(ends, std::, <ostream>)
SYMBOL(equal, std::, <algorithm>)
SYMBOL(equal_range, std::, <algorithm>)
SYMBOL(equal_to, std::, <functional>)
SYMBOL(erf, std::, <cmath>)
SYMBOL(erfc, std::, <cmath>)
SYMBOL(errc, std::, <system_error>)
SYMBOL(error_category, std::, <system_error>)
SYMBOL(error_code, std::, <system_error>)
SYMBOL(error_condition, std::, <system_error>)
SYMBOL(exa, std::, <ratio>)
SYMBOL(exception, std::, <exception>)
SYMBOL(exception_ptr, std::, <exception>)
SYMBOL(exchange, std::, <utility>)
SYMBOL(exclusive_scan, std::, <numeric>)
SYMBOL(exit, std::, <cstdlib>)
SYMBOL(exp, std::, <cmath>)
SYMBOL(exp2, std::, <cmath>)
SYMBOL(expm1, std::, <cmath>)
SYMBOL(exponential_distribution, std::, <random>)
SYMBOL(extent, std::, <type_traits>)
SYMBOL(extent_v, std::, <type_traits>)
SYMBOL(extreme_value_distribution, std::, <random>)
SYMBOL(false_type, std::, <type_traits>)
SYMBOL(fclose, std::, <cstdio>)
SYMBOL(fdim, std::, <cmath>)
SYMBOL(feclearexcept, std::, <cfenv>)
SYMBOL(fegetenv, std::, <cfenv>)
SYMBOL(fegetexceptflag, std::, <cfenv>)
SYMBOL(fegetround, std::, <cfenv>)
SYMBOL(feholdexcept, std::, <cfenv>)
SYMBOL(femto, std::, <ratio>)
SYMBOL(fenv_t, std::, <cfenv>)
SYMBOL(feof, std::, <cstdio>)
SYMBOL(feraiseexcept, std::, <cfenv>)
SYMBOL(ferror, std::, <cstdio>)
SYMBOL(fesetenv, std::, <cfenv>)
SYMBOL(fesetexceptflag, std::, <cfenv>)
SYMBOL(fesetround, std::, <cfenv>)
SYMBOL(fetestexcept, std::, <cfenv>)
SYMBOL(feupdateenv, std::, <cfenv>)
SYMBOL(fexcept_t, std::, <cfenv>)
SYMBOL(fflush, std::, <cstdio>)
SYMBOL(fgetc, std::, <cstdio>)
SYMBOL(fgetpos, std::, <cstdio>)
SYMBOL(fgets, std::, <cstdio>)
SYMBOL(fgetwc, std::, <cwchar>)
SYMBOL(fgetws, std::, <cwchar>)
SYMBOL(filebuf, std::, <streambuf>)
SYMBOL(fill, std::, <algorithm>)
SYMBOL(fill_n, std::, <algorithm>)
SYMBOL(find, std::, <algorithm>)
SYMBOL(find_end, std::, <algorithm>)
SYMBOL(find_first_of, std::, <algorithm>)
SYMBOL(find_if, std::, <algorithm>)
SYMBOL(find_if_not, std::, <algorithm>)
SYMBOL(fisher_f_distribution, std::, <random>)
SYMBOL(fixed, std::, <ios>)
SYMBOL(float_denorm_style, std::, <limits>)
SYMBOL(float_round_style, std::, <limits>)
SYMBOL(float_t, std::, <cmath>)
SYMBOL(floor, std::, <cmath>)
SYMBOL(floor2, std::, <bit>)
SYMBOL(flush, std::, <ostream>)
SYMBOL(flush_emit, std::, <ostream>)
SYMBOL(fma, std::, <cmath>)
SYMBOL(fmax, std::, <cmath>)
SYMBOL(fmin, std::, <cmath>)
SYMBOL(fmod, std::, <cmath>)
SYMBOL(fopen, std::, <cstdio>)
SYMBOL(for_each, std::, <algorithm>)
SYMBOL(for_each_n, std::, <algorithm>)
SYMBOL(forward, std::, <utility>)
SYMBOL(forward_as_tuple, std::, <tuple>)
SYMBOL(forward_iterator_tag, std::, <iterator>)
SYMBOL(forward_list, std::, <forward_list>)
SYMBOL(fpclassify, std::, <cmath>)
SYMBOL(fpos, std::, <ios>)
SYMBOL(fpos_t, std::, <cstdio>)
SYMBOL(fprintf, std::, <cstdio>)
SYMBOL(fputc, std::, <cstdio>)
SYMBOL(fputs, std::, <cstdio>)
SYMBOL(fputwc, std::, <cwchar>)
SYMBOL(fputws, std::, <cwchar>)
SYMBOL(fread, std::, <cstdio>)
SYMBOL(free, std::, <cstdlib>)
SYMBOL(freopen, std::, <cstdio>)
SYMBOL(frexp, std::, <cmath>)
SYMBOL(from_chars, std::, <charconv>)
SYMBOL(front_insert_iterator, std::, <iterator>)
SYMBOL(front_inserter, std::, <iterator>)
SYMBOL(fscanf, std::, <cstdio>)
SYMBOL(fseek, std::, <cstdio>)
SYMBOL(fsetpos, std::, <cstdio>)
SYMBOL(fstream, std::, <fstream>)
SYMBOL(ftell, std::, <cstdio>)
SYMBOL(function, std::, <functional>)
SYMBOL(future, std::, <future>)
SYMBOL(future_category, std::, <future>)
SYMBOL(future_errc, std::, <future>)
SYMBOL(future_error, std::, <future>)
SYMBOL(future_status, std::, <future>)
SYMBOL(fwide, std::, <cwchar>)
SYMBOL(fwprintf, std::, <cwchar>)
SYMBOL(fwrite, std::, <cstdio>)
SYMBOL(fwscanf, std::, <cwchar>)
SYMBOL(gamma_distribution, std::, <random>)
SYMBOL(gcd, std::, <numeric>)
SYMBOL(generate, std::, <algorithm>)
SYMBOL(generate_canonical, std::, <random>)
SYMBOL(generate_n, std::, <algorithm>)
SYMBOL(generic_category, std::, <system_error>)
SYMBOL(geometric_distribution, std::, <random>)
SYMBOL(get_if, std::, <variant>)
SYMBOL(get_money, std::, <iomanip>)
SYMBOL(get_new_handler, std::, <new>)
SYMBOL(get_pointer_safety, std::, <memory>)
SYMBOL(get_terminate, std::, <exception>)
SYMBOL(get_time, std::, <iomanip>)
SYMBOL(getc, std::, <cstdio>)
SYMBOL(getchar, std::, <cstdio>)
SYMBOL(getenv, std::, <cstdlib>)
SYMBOL(gets, std::, <cstdio>)
SYMBOL(getwc, std::, <cwchar>)
SYMBOL(getwchar, std::, <cwchar>)
SYMBOL(giga, std::, <ratio>)
SYMBOL(gmtime, std::, <ctime>)
SYMBOL(greater, std::, <functional>)
SYMBOL(greater_equal, std::, <functional>)
SYMBOL(gslice, std::, <valarray>)
SYMBOL(gslice_array, std::, <valarray>)
SYMBOL(hardware_constructive_interference_size, std::, <new>)
SYMBOL(hardware_destructive_interference_size, std::, <new>)
SYMBOL(has_facet, std::, <locale>)
SYMBOL(has_unique_object_representations, std::, <type_traits>)
SYMBOL(has_unique_object_representations_v, std::, <type_traits>)
SYMBOL(has_virtual_destructor, std::, <type_traits>)
SYMBOL(has_virtual_destructor_v, std::, <type_traits>)
SYMBOL(hash, std::, <functional>)
SYMBOL(hecto, std::, <ratio>)
SYMBOL(hex, std::, <ios>)
SYMBOL(hexfloat, std::, <ios>)
SYMBOL(holds_alternative, std::, <variant>)
SYMBOL(hypot, std::, <cmath>)
SYMBOL(identity, std::, <functional>)
SYMBOL(ifstream, std::, <fstream>)
SYMBOL(ignore, std::, <tuple>)
SYMBOL(ilogb, std::, <cmath>)
SYMBOL(imag, std::, <complex>)
SYMBOL(imaxabs, std::, <cinttypes>)
SYMBOL(imaxdiv, std::, <cinttypes>)
SYMBOL(imaxdiv_t, std::, <cinttypes>)
SYMBOL(in_place, std::, <utility>)
SYMBOL(in_place_index, std::, <utility>)
SYMBOL(in_place_index_t, std::, <utility>)
SYMBOL(in_place_t, std::, <utility>)
SYMBOL(in_place_type, std::, <utility>)
SYMBOL(in_place_type_t, std::, <utility>)
SYMBOL(includes, std::, <algorithm>)
SYMBOL(inclusive_scan, std::, <numeric>)
SYMBOL(independent_bits_engine, std::, <random>)
SYMBOL(indirect_array, std::, <valarray>)
SYMBOL(initializer_list, std::, <initializer_list>)
SYMBOL(inner_product, std::, <numeric>)
SYMBOL(inplace_merge, std::, <algorithm>)
SYMBOL(input_iterator_tag, std::, <iterator>)
SYMBOL(insert_iterator, std::, <iterator>)
SYMBOL(inserter, std::, <iterator>)
SYMBOL(int16_t, std::, <cstdint>)
SYMBOL(int32_t, std::, <cstdint>)
SYMBOL(int64_t, std::, <cstdint>)
SYMBOL(int8_t, std::, <cstdint>)
SYMBOL(int_fast16_t, std::, <cstdint>)
SYMBOL(int_fast32_t, std::, <cstdint>)
SYMBOL(int_fast64_t, std::, <cstdint>)
SYMBOL(int_fast8_t, std::, <cstdint>)
SYMBOL(int_least16_t, std::, <cstdint>)
SYMBOL(int_least32_t, std::, <cstdint>)
SYMBOL(int_least64_t, std::, <cstdint>)
SYMBOL(int_least8_t, std::, <cstdint>)
SYMBOL(integer_sequence, std::, <utility>)
SYMBOL(integral_constant, std::, <type_traits>)
SYMBOL(internal, std::, <ios>)
SYMBOL(intmax_t, std::, <cstdint>)
SYMBOL(intptr_t, std::, <cstdint>)
SYMBOL(invalid_argument, std::, <stdexcept>)
SYMBOL(invoke, std::, <functional>)
SYMBOL(invoke_result, std::, <type_traits>)
SYMBOL(invoke_result_t, std::, <type_traits>)
SYMBOL(io_errc, std::, <ios>)
SYMBOL(ios, std::, <ios>)
SYMBOL(ios_base, std::, <ios>)
SYMBOL(iostream, std::, <istream>)
SYMBOL(iostream_category, std::, <ios>)
SYMBOL(iota, std::, <numeric>)
SYMBOL(is_abstract, std::, <type_traits>)
SYMBOL(is_abstract_v, std::, <type_traits>)
SYMBOL(is_aggregate, std::, <type_traits>)
SYMBOL(is_aggregate_v, std::, <type_traits>)
SYMBOL(is_arithmetic, std::, <type_traits>)
SYMBOL(is_arithmetic_v, std::, <type_traits>)
SYMBOL(is_array, std::, <type_traits>)
SYMBOL(is_array_v, std::, <type_traits>)
SYMBOL(is_assignable, std::, <type_traits>)
SYMBOL(is_assignable_v, std::, <type_traits>)
SYMBOL(is_base_of, std::, <type_traits>)
SYMBOL(is_base_of_v, std::, <type_traits>)
SYMBOL(is_bind_expression, std::, <functional>)
SYMBOL(is_bind_expression_v, std::, <functional>)
SYMBOL(is_class, std::, <type_traits>)
SYMBOL(is_class_v, std::, <type_traits>)
SYMBOL(is_compound, std::, <type_traits>)
SYMBOL(is_compound_v, std::, <type_traits>)
SYMBOL(is_const, std::, <type_traits>)
SYMBOL(is_const_v, std::, <type_traits>)
SYMBOL(is_constructible, std::, <type_traits>)
SYMBOL(is_constructible_v, std::, <type_traits>)
SYMBOL(is_convertible, std::, <type_traits>)
SYMBOL(is_convertible_v, std::, <type_traits>)
SYMBOL(is_copy_assignable, std::, <type_traits>)
SYMBOL(is_copy_assignable_v, std::, <type_traits>)
SYMBOL(is_copy_constructible, std::, <type_traits>)
SYMBOL(is_copy_constructible_v, std::, <type_traits>)
SYMBOL(is_default_constructible, std::, <type_traits>)
SYMBOL(is_default_constructible_v, std::, <type_traits>)
SYMBOL(is_destructible, std::, <type_traits>)
SYMBOL(is_destructible_v, std::, <type_traits>)
SYMBOL(is_empty, std::, <type_traits>)
SYMBOL(is_empty_v, std::, <type_traits>)
SYMBOL(is_enum, std::, <type_traits>)
SYMBOL(is_enum_v, std::, <type_traits>)
SYMBOL(is_eq, std::, <compare>)
SYMBOL(is_error_code_enum, std::, <system_error>)
SYMBOL(is_error_condition_enum, std::, <system_error>)
SYMBOL(is_error_condition_enum_v, std::, <system_error>)
SYMBOL(is_execution_policy, std::, <execution>)
SYMBOL(is_execution_policy_v, std::, <execution>)
SYMBOL(is_final, std::, <type_traits>)
SYMBOL(is_final_v, std::, <type_traits>)
SYMBOL(is_floating_point, std::, <type_traits>)
SYMBOL(is_floating_point_v, std::, <type_traits>)
SYMBOL(is_function, std::, <type_traits>)
SYMBOL(is_function_v, std::, <type_traits>)
SYMBOL(is_fundamental, std::, <type_traits>)
SYMBOL(is_fundamental_v, std::, <type_traits>)
SYMBOL(is_gt, std::, <compare>)
SYMBOL(is_gteq, std::, <compare>)
SYMBOL(is_heap, std::, <algorithm>)
SYMBOL(is_heap_until, std::, <algorithm>)
SYMBOL(is_integral, std::, <type_traits>)
SYMBOL(is_integral_v, std::, <type_traits>)
SYMBOL(is_invocable, std::, <type_traits>)
SYMBOL(is_invocable_r, std::, <type_traits>)
SYMBOL(is_invocable_r_v, std::, <type_traits>)
SYMBOL(is_invocable_v, std::, <type_traits>)
SYMBOL(is_lt, std::, <compare>)
SYMBOL(is_lteq, std::, <compare>)
SYMBOL(is_lvalue_reference, std::, <type_traits>)
SYMBOL(is_lvalue_reference_v, std::, <type_traits>)
SYMBOL(is_member_function_pointer, std::, <type_traits>)
SYMBOL(is_member_function_pointer_v, std::, <type_traits>)
SYMBOL(is_member_object_pointer, std::, <type_traits>)
SYMBOL(is_member_object_pointer_v, std::, <type_traits>)
SYMBOL(is_member_pointer, std::, <type_traits>)
SYMBOL(is_member_pointer_v, std::, <type_traits>)
SYMBOL(is_move_assignable, std::, <type_traits>)
SYMBOL(is_move_assignable_v, std::, <type_traits>)
SYMBOL(is_move_constructible, std::, <type_traits>)
SYMBOL(is_move_constructible_v, std::, <type_traits>)
SYMBOL(is_neq, std::, <compare>)
SYMBOL(is_nothrow_assignable, std::, <type_traits>)
SYMBOL(is_nothrow_assignable_v, std::, <type_traits>)
SYMBOL(is_nothrow_constructible, std::, <type_traits>)
SYMBOL(is_nothrow_constructible_v, std::, <type_traits>)
SYMBOL(is_nothrow_copy_assignable, std::, <type_traits>)
SYMBOL(is_nothrow_copy_assignable_v, std::, <type_traits>)
SYMBOL(is_nothrow_copy_constructible, std::, <type_traits>)
SYMBOL(is_nothrow_copy_constructible_v, std::, <type_traits>)
SYMBOL(is_nothrow_default_constructible, std::, <type_traits>)
SYMBOL(is_nothrow_default_constructible_v, std::, <type_traits>)
SYMBOL(is_nothrow_destructible, std::, <type_traits>)
SYMBOL(is_nothrow_destructible_v, std::, <type_traits>)
SYMBOL(is_nothrow_invocable, std::, <type_traits>)
SYMBOL(is_nothrow_invocable_r, std::, <type_traits>)
SYMBOL(is_nothrow_invocable_r_v, std::, <type_traits>)
SYMBOL(is_nothrow_invocable_v, std::, <type_traits>)
SYMBOL(is_nothrow_move_assignable, std::, <type_traits>)
SYMBOL(is_nothrow_move_assignable_v, std::, <type_traits>)
SYMBOL(is_nothrow_move_constructible, std::, <type_traits>)
SYMBOL(is_nothrow_move_constructible_v, std::, <type_traits>)
SYMBOL(is_nothrow_swappable, std::, <type_traits>)
SYMBOL(is_nothrow_swappable_v, std::, <type_traits>)
SYMBOL(is_nothrow_swappable_with, std::, <type_traits>)
SYMBOL(is_nothrow_swappable_with_v, std::, <type_traits>)
SYMBOL(is_null_pointer, std::, <type_traits>)
SYMBOL(is_null_pointer_v, std::, <type_traits>)
SYMBOL(is_object, std::, <type_traits>)
SYMBOL(is_object_v, std::, <type_traits>)
SYMBOL(is_partitioned, std::, <algorithm>)
SYMBOL(is_permutation, std::, <algorithm>)
SYMBOL(is_placeholder, std::, <functional>)
SYMBOL(is_placeholder_v, std::, <functional>)
SYMBOL(is_pod, std::, <type_traits>)
SYMBOL(is_pod_v, std::, <type_traits>)
SYMBOL(is_pointer, std::, <type_traits>)
SYMBOL(is_pointer_v, std::, <type_traits>)
SYMBOL(is_polymorphic, std::, <type_traits>)
SYMBOL(is_polymorphic_v, std::, <type_traits>)
SYMBOL(is_reference, std::, <type_traits>)
SYMBOL(is_reference_v, std::, <type_traits>)
SYMBOL(is_rvalue_reference, std::, <type_traits>)
SYMBOL(is_rvalue_reference_v, std::, <type_traits>)
SYMBOL(is_same, std::, <type_traits>)
SYMBOL(is_same_v, std::, <type_traits>)
SYMBOL(is_scalar, std::, <type_traits>)
SYMBOL(is_scalar_v, std::, <type_traits>)
SYMBOL(is_signed, std::, <type_traits>)
SYMBOL(is_signed_v, std::, <type_traits>)
SYMBOL(is_sorted, std::, <algorithm>)
SYMBOL(is_sorted_until, std::, <algorithm>)
SYMBOL(is_standard_layout, std::, <type_traits>)
SYMBOL(is_standard_layout_v, std::, <type_traits>)
SYMBOL(is_swappable, std::, <type_traits>)
SYMBOL(is_swappable_v, std::, <type_traits>)
SYMBOL(is_swappable_with, std::, <type_traits>)
SYMBOL(is_swappable_with_v, std::, <type_traits>)
SYMBOL(is_trivial, std::, <type_traits>)
SYMBOL(is_trivial_v, std::, <type_traits>)
SYMBOL(is_trivially_assignable, std::, <type_traits>)
SYMBOL(is_trivially_assignable_v, std::, <type_traits>)
SYMBOL(is_trivially_constructible, std::, <type_traits>)
SYMBOL(is_trivially_constructible_v, std::, <type_traits>)
SYMBOL(is_trivially_copy_assignable, std::, <type_traits>)
SYMBOL(is_trivially_copy_assignable_v, std::, <type_traits>)
SYMBOL(is_trivially_copy_constructible, std::, <type_traits>)
SYMBOL(is_trivially_copy_constructible_v, std::, <type_traits>)
SYMBOL(is_trivially_copyable, std::, <type_traits>)
SYMBOL(is_trivially_copyable_v, std::, <type_traits>)
SYMBOL(is_trivially_default_constructible, std::, <type_traits>)
SYMBOL(is_trivially_default_constructible_v, std::, <type_traits>)
SYMBOL(is_trivially_destructible, std::, <type_traits>)
SYMBOL(is_trivially_destructible_v, std::, <type_traits>)
SYMBOL(is_trivially_move_assignable, std::, <type_traits>)
SYMBOL(is_trivially_move_assignable_v, std::, <type_traits>)
SYMBOL(is_trivially_move_constructible, std::, <type_traits>)
SYMBOL(is_trivially_move_constructible_v, std::, <type_traits>)
SYMBOL(is_union, std::, <type_traits>)
SYMBOL(is_union_v, std::, <type_traits>)
SYMBOL(is_unsigned, std::, <type_traits>)
SYMBOL(is_unsigned_v, std::, <type_traits>)
SYMBOL(is_void, std::, <type_traits>)
SYMBOL(is_void_v, std::, <type_traits>)
SYMBOL(is_volatile, std::, <type_traits>)
SYMBOL(is_volatile_v, std::, <type_traits>)
SYMBOL(isalnum, std::, <cctype>)
SYMBOL(isalpha, std::, <cctype>)
SYMBOL(isblank, std::, <cctype>)
SYMBOL(iscntrl, std::, <cctype>)
SYMBOL(isdigit, std::, <cctype>)
SYMBOL(isfinite, std::, <cmath>)
SYMBOL(isgraph, std::, <cctype>)
SYMBOL(isgreater, std::, <cmath>)
SYMBOL(isgreaterequal, std::, <cmath>)
SYMBOL(isinf, std::, <cmath>)
SYMBOL(isless, std::, <cmath>)
SYMBOL(islessequal, std::, <cmath>)
SYMBOL(islessgreater, std::, <cmath>)
SYMBOL(islower, std::, <cctype>)
SYMBOL(isnan, std::, <cmath>)
SYMBOL(isnormal, std::, <cmath>)
SYMBOL(ispow2, std::, <bit>)
SYMBOL(isprint, std::, <cctype>)
SYMBOL(ispunct, std::, <cctype>)
SYMBOL(isspace, std::, <cctype>)
SYMBOL(istream, std::, <istream>)
SYMBOL(istream_iterator, std::, <iterator>)
SYMBOL(istreambuf_iterator, std::, <iterator>)
SYMBOL(istringstream, std::, <sstream>)
SYMBOL(isunordered, std::, <cmath>)
SYMBOL(isupper, std::, <cctype>)
SYMBOL(iswalnum, std::, <cwctype>)
SYMBOL(iswalpha, std::, <cwctype>)
SYMBOL(iswblank, std::, <cwctype>)
SYMBOL(iswcntrl, std::, <cwctype>)
SYMBOL(iswctype, std::, <cwctype>)
SYMBOL(iswdigit, std::, <cwctype>)
SYMBOL(iswgraph, std::, <cwctype>)
SYMBOL(iswlower, std::, <cwctype>)
SYMBOL(iswprint, std::, <cwctype>)
SYMBOL(iswpunct, std::, <cwctype>)
SYMBOL(iswspace, std::, <cwctype>)
SYMBOL(iswupper, std::, <cwctype>)
SYMBOL(iswxdigit, std::, <cwctype>)
SYMBOL(isxdigit, std::, <cctype>)
SYMBOL(iter_swap, std::, <algorithm>)
SYMBOL(iterator, std::, <iterator>)
SYMBOL(iterator_traits, std::, <iterator>)
SYMBOL(jmp_buf, std::, <csetjmp>)
SYMBOL(kill_dependency, std::, <atomic>)
SYMBOL(kilo, std::, <ratio>)
SYMBOL(knuth_b, std::, <random>)
SYMBOL(labs, std::, <cstdlib>)
SYMBOL(launch, std::, <future>)
SYMBOL(launder, std::, <new>)
SYMBOL(lcm, std::, <numeric>)
SYMBOL(lconv, std::, <clocale>)
SYMBOL(ldexp, std::, <cmath>)
SYMBOL(ldiv, std::, <cstdlib>)
SYMBOL(ldiv_t, std::, <cstdlib>)
SYMBOL(left, std::, <ios>)
SYMBOL(length_error, std::, <stdexcept>)
SYMBOL(less, std::, <functional>)
SYMBOL(less_equal, std::, <functional>)
SYMBOL(lexicographical_compare, std::, <algorithm>)
SYMBOL(lexicographical_compare_3way, std::, <algorithm>)
SYMBOL(lgamma, std::, <cmath>)
SYMBOL(linear_congruential_engine, std::, <random>)
SYMBOL(list, std::, <list>)
SYMBOL(llabs, std::, <cstdlib>)
SYMBOL(lldiv, std::, <cstdlib>)
SYMBOL(lldiv_t, std::, <cstdlib>)
SYMBOL(llrint, std::, <cmath>)
SYMBOL(llround, std::, <cmath>)
SYMBOL(locale, std::, <locale>)
SYMBOL(localeconv, std::, <clocale>)
SYMBOL(localtime, std::, <ctime>)
SYMBOL(lock, std::, <mutex>)
SYMBOL(lock_guard, std::, <mutex>)
SYMBOL(log, std::, <cmath>)
SYMBOL(log10, std::, <cmath>)
SYMBOL(log1p, std::, <cmath>)
SYMBOL(log2, std::, <cmath>)
SYMBOL(log2p1, std::, <bit>)
SYMBOL(logb, std::, <cmath>)
SYMBOL(logic_error, std::, <stdexcept>)
SYMBOL(logical_and, std::, <functional>)
SYMBOL(logical_not, std::, <functional>)
SYMBOL(logical_or, std::, <functional>)
SYMBOL(lognormal_distribution, std::, <random>)
SYMBOL(longjmp, std::, <csetjmp>)
SYMBOL(lower_bound, std::, <algorithm>)
SYMBOL(lrint, std::, <cmath>)
SYMBOL(lround, std::, <cmath>)
SYMBOL(make_exception_ptr, std::, <exception>)
SYMBOL(make_from_tuple, std::, <tuple>)
SYMBOL(make_heap, std::, <algorithm>)
SYMBOL(make_move_iterator, std::, <iterator>)
SYMBOL(make_optional, std::, <optional>)
SYMBOL(make_pair, std::, <utility>)
SYMBOL(make_reverse_iterator, std::, <iterator>)
SYMBOL(make_shared, std::, <memory>)
SYMBOL(make_signed, std::, <type_traits>)
SYMBOL(make_signed_t, std::, <type_traits>)
SYMBOL(make_tuple, std::, <tuple>)
SYMBOL(make_unique, std::, <memory>)
SYMBOL(make_unsigned, std::, <type_traits>)
SYMBOL(make_unsigned_t, std::, <type_traits>)
SYMBOL(malloc, std::, <cstdlib>)
SYMBOL(map, std::, <map>)
SYMBOL(mask_array, std::, <valarray>)
SYMBOL(match_results, std::, <regex>)
SYMBOL(max, std::, <algorithm>)
SYMBOL(max_align_t, std::, <cstddef>)
SYMBOL(max_element, std::, <algorithm>)
SYMBOL(mblen, std::, <cstdlib>)
SYMBOL(mbrlen, std::, <cwchar>)
SYMBOL(mbrtoc16, std::, <cuchar>)
SYMBOL(mbrtoc32, std::, <cuchar>)
SYMBOL(mbrtowc, std::, <cwchar>)
SYMBOL(mbsinit, std::, <cwchar>)
SYMBOL(mbsrtowcs, std::, <cwchar>)
SYMBOL(mbstowcs, std::, <cstdlib>)
SYMBOL(mbtowc, std::, <cstdlib>)
SYMBOL(mega, std::, <ratio>)
SYMBOL(mem_fn, std::, <functional>)
SYMBOL(memchr, std::, <cstring>)
SYMBOL(memcmp, std::, <cstring>)
SYMBOL(memcpy, std::, <cstring>)
SYMBOL(memmove, std::, <cstring>)
SYMBOL(memory_order, std::, <atomic>)
SYMBOL(memory_order_acq_rel, std::, <atomic>)
SYMBOL(memory_order_acquire, std::, <atomic>)
SYMBOL(memory_order_consume, std::, <atomic>)
SYMBOL(memory_order_relaxed, std::, <atomic>)
SYMBOL(memory_order_release, std::, <atomic>)
SYMBOL(memory_order_seq_cst, std::, <atomic>)
SYMBOL(memset, std::, <cstring>)
SYMBOL(merge, std::, <algorithm>)
SYMBOL(mersenne_twister_engine, std::, <random>)
SYMBOL(messages, std::, <locale>)
SYMBOL(messages_base, std::, <locale>)
SYMBOL(messages_byname, std::, <locale>)
SYMBOL(micro, std::, <ratio>)
SYMBOL(milli, std::, <ratio>)
SYMBOL(min, std::, <algorithm>)
SYMBOL(min_element, std::, <algorithm>)
SYMBOL(minmax, std::, <algorithm>)
SYMBOL(minmax_element, std::, <algorithm>)
SYMBOL(minstd_rand, std::, <random>)
SYMBOL(minstd_rand0, std::, <random>)
SYMBOL(minus, std::, <functional>)
SYMBOL(mismatch, std::, <algorithm>)
SYMBOL(mktime, std::, <ctime>)
SYMBOL(modf, std::, <cmath>)
SYMBOL(modulus, std::, <functional>)
SYMBOL(money_base, std::, <locale>)
SYMBOL(money_get, std::, <locale>)
SYMBOL(money_put, std::, <locale>)
SYMBOL(moneypunct, std::, <locale>)
SYMBOL(moneypunct_byname, std::, <locale>)
SYMBOL(monostate, std::, <variant>)
SYMBOL(move_backward, std::, <algorithm>)
SYMBOL(move_if_noexcept, std::, <utility>)
SYMBOL(move_iterator, std::, <iterator>)
SYMBOL(mt19937, std::, <random>)
SYMBOL(mt19937_64, std::, <random>)
SYMBOL(multimap, std::, <map>)
SYMBOL(multiplies, std::, <functional>)
SYMBOL(multiset, std::, <set>)
SYMBOL(mutex, std::, <mutex>)
SYMBOL(nan, std::, <cmath>)
SYMBOL(nanf, std::, <cmath>)
SYMBOL(nanl, std::, <cmath>)
SYMBOL(nano, std::, <ratio>)
SYMBOL(nearbyint, std::, <cmath>)
SYMBOL(negate, std::, <functional>)
SYMBOL(negation, std::, <type_traits>)
SYMBOL(negation_v, std::, <type_traits>)
SYMBOL(negative_binomial_distribution, std::, <random>)
SYMBOL(nested_exception, std::, <exception>)
SYMBOL(new_handler, std::, <new>)
SYMBOL(next, std::, <iterator>)
SYMBOL(next_permutation, std::, <algorithm>)
SYMBOL(nextafter, std::, <cmath>)
SYMBOL(nexttoward, std::, <cmath>)
SYMBOL(no_emit_on_flush, std::, <ostream>)
SYMBOL(noboolalpha, std::, <ios>)
SYMBOL(none_of, std::, <algorithm>)
SYMBOL(norm, std::, <complex>)
SYMBOL(normal_distribution, std::, <random>)
SYMBOL(noshowbase, std::, <ios>)
SYMBOL(noshowpoint, std::, <ios>)
SYMBOL(noshowpos, std::, <ios>)
SYMBOL(noskipws, std::, <ios>)
SYMBOL(not_equal_to, std::, <functional>)
SYMBOL(not_fn, std::, <functional>)
SYMBOL(nothrow, std::, <new>)
SYMBOL(nothrow_t, std::, <new>)
SYMBOL(notify_all_at_thread_exit, std::, <condition_variable>)
SYMBOL(nounitbuf, std::, <ios>)
SYMBOL(nouppercase, std::, <ios>)
SYMBOL(nth_element, std::, <algorithm>)
SYMBOL(nullopt, std::, <optional>)
SYMBOL(nullopt_t, std::, <optional>)
SYMBOL(nullptr_t, std::, <cstddef>)
SYMBOL(num_get, std::, <locale>)
SYMBOL(num_put, std::, <locale>)
SYMBOL(numeric_limits, std::, <limits>)
SYMBOL(numpunct, std::, <locale>)
SYMBOL(numpunct_byname, std::, <locale>)
SYMBOL(oct, std::, <ios>)
SYMBOL(ofstream, std::, <fstream>)
SYMBOL(once_flag, std::, <mutex>)
SYMBOL(optional, std::, <optional>)
SYMBOL(ostream, std::, <ostream>)
SYMBOL(ostream_iterator, std::, <iterator>)
SYMBOL(ostreambuf_iterator, std::, <iterator>)
SYMBOL(ostringstream, std::, <sstream>)
SYMBOL(osyncstream, std::, <syncstream>)
SYMBOL(out_of_range, std::, <stdexcept>)
SYMBOL(output_iterator_tag, std::, <iterator>)
SYMBOL(overflow_error, std::, <stdexcept>)
SYMBOL(owner_less, std::, <memory>)
SYMBOL(packaged_task, std::, <future>)
SYMBOL(pair, std::, <utility>)
SYMBOL(partial_order, std::, <compare>)
SYMBOL(partial_ordering, std::, <compare>)
SYMBOL(partial_sort, std::, <algorithm>)
SYMBOL(partial_sort_copy, std::, <algorithm>)
SYMBOL(partial_sum, std::, <numeric>)
SYMBOL(partition, std::, <algorithm>)
SYMBOL(partition_copy, std::, <algorithm>)
SYMBOL(partition_point, std::, <algorithm>)
SYMBOL(perror, std::, <cstdio>)
SYMBOL(peta, std::, <ratio>)
SYMBOL(pico, std::, <ratio>)
SYMBOL(piecewise_constant_distribution, std::, <random>)
SYMBOL(piecewise_construct_t, std::, <utility>)
SYMBOL(piecewise_linear_distribution, std::, <random>)
SYMBOL(plus, std::, <functional>)
SYMBOL(pointer_safety, std::, <memory>)
SYMBOL(pointer_traits, std::, <memory>)
SYMBOL(poisson_distribution, std::, <random>)
SYMBOL(polar, std::, <complex>)
SYMBOL(polymorphic_allocator, std::, <memory_resource>)
SYMBOL(pop_heap, std::, <algorithm>)
SYMBOL(pow, std::, <cmath>)
SYMBOL(prev, std::, <iterator>)
SYMBOL(prev_permutation, std::, <algorithm>)
SYMBOL(printf, std::, <cstdio>)
SYMBOL(priority_queue, std::, <queue>)
SYMBOL(proj, std::, <complex>)
SYMBOL(promise, std::, <future>)
SYMBOL(ptrdiff_t, std::, <cstddef>)
SYMBOL(push_heap, std::, <algorithm>)
SYMBOL(put_money, std::, <iomanip>)
SYMBOL(put_time, std::, <iomanip>)
SYMBOL(putc, std::, <cstdio>)
SYMBOL(putchar, std::, <cstdio>)
SYMBOL(puts, std::, <cstdio>)
SYMBOL(putwc, std::, <cwchar>)
SYMBOL(putwchar, std::, <cwchar>)
SYMBOL(qsort, std::, <cstdlib>)
SYMBOL(queue, std::, <queue>)
SYMBOL(quick_exit, std::, <cstdlib>)
SYMBOL(quoted, std::, <iomanip>)
SYMBOL(raise, std::, <csignal>)
SYMBOL(rand, std::, <cstdlib>)
SYMBOL(random_access_iterator_tag, std::, <iterator>)
SYMBOL(random_device, std::, <random>)
SYMBOL(random_shuffle, std::, <algorithm>)
SYMBOL(range_error, std::, <stdexcept>)
SYMBOL(rank, std::, <type_traits>)
SYMBOL(rank_v, std::, <type_traits>)
SYMBOL(ranlux24, std::, <random>)
SYMBOL(ranlux24_base, std::, <random>)
SYMBOL(ranlux48, std::, <random>)
SYMBOL(ranlux48_base, std::, <random>)
SYMBOL(ratio, std::, <ratio>)
SYMBOL(ratio_add, std::, <ratio>)
SYMBOL(ratio_divide, std::, <ratio>)
SYMBOL(ratio_equal, std::, <ratio>)
SYMBOL(ratio_equal_v, std::, <ratio>)
SYMBOL(ratio_greater, std::, <ratio>)
SYMBOL(ratio_greater_equal, std::, <ratio>)
SYMBOL(ratio_greater_equal_v, std::, <ratio>)
SYMBOL(ratio_greater_v, std::, <ratio>)
SYMBOL(ratio_less, std::, <ratio>)
SYMBOL(ratio_less_equal, std::, <ratio>)
SYMBOL(ratio_less_equal_v, std::, <ratio>)
SYMBOL(ratio_less_v, std::, <ratio>)
SYMBOL(ratio_multiply, std::, <ratio>)
SYMBOL(ratio_not_equal, std::, <ratio>)
SYMBOL(ratio_not_equal_v, std::, <ratio>)
SYMBOL(ratio_subtract, std::, <ratio>)
SYMBOL(rbegin, std::, <iterator>)
SYMBOL(real, std::, <complex>)
SYMBOL(realloc, std::, <cstdlib>)
SYMBOL(recursive_mutex, std::, <mutex>)
SYMBOL(recursive_timed_mutex, std::, <mutex>)
SYMBOL(reduce, std::, <numeric>)
SYMBOL(ref, std::, <functional>)
SYMBOL(reference_wrapper, std::, <functional>)
SYMBOL(regex, std::, <regex>)
SYMBOL(regex_error, std::, <regex>)
SYMBOL(regex_iterator, std::, <regex>)
SYMBOL(regex_match, std::, <regex>)
SYMBOL(regex_replace, std::, <regex>)
SYMBOL(regex_search, std::, <regex>)
SYMBOL(regex_token_iterator, std::, <regex>)
SYMBOL(regex_traits, std::, <regex>)
SYMBOL(reinterpret_pointer_cast, std::, <memory>)
SYMBOL(remainder, std::, <cmath>)
SYMBOL(remove, std::, <cstdio>)
SYMBOL(remove_all_extents, std::, <type_traits>)
SYMBOL(remove_all_extents_t, std::, <type_traits>)
SYMBOL(remove_const, std::, <type_traits>)
SYMBOL(remove_const_t, std::, <type_traits>)
SYMBOL(remove_copy, std::, <algorithm>)
SYMBOL(remove_copy_if, std::, <algorithm>)
SYMBOL(remove_cv, std::, <type_traits>)
SYMBOL(remove_cv_t, std::, <type_traits>)
SYMBOL(remove_cvref, std::, <type_traits>)
SYMBOL(remove_cvref_t, std::, <type_traits>)
SYMBOL(remove_extent, std::, <type_traits>)
SYMBOL(remove_extent_t, std::, <type_traits>)
SYMBOL(remove_pointer, std::, <type_traits>)
SYMBOL(remove_pointer_t, std::, <type_traits>)
SYMBOL(remove_reference, std::, <type_traits>)
SYMBOL(remove_reference_t, std::, <type_traits>)
SYMBOL(remove_volatile, std::, <type_traits>)
SYMBOL(remove_volatile_t, std::, <type_traits>)
SYMBOL(remquo, std::, <cmath>)
SYMBOL(rename, std::, <cstdio>)
SYMBOL(rend, std::, <iterator>)
SYMBOL(replace, std::, <algorithm>)
SYMBOL(replace_copy, std::, <algorithm>)
SYMBOL(replace_copy_if, std::, <algorithm>)
SYMBOL(replace_if, std::, <algorithm>)
SYMBOL(resetiosflags, std::, <iomanip>)
SYMBOL(result_of, std::, <type_traits>)
SYMBOL(result_of_t, std::, <type_traits>)
SYMBOL(rethrow_exception, std::, <exception>)
SYMBOL(rethrow_if_nested, std::, <exception>)
SYMBOL(reverse, std::, <algorithm>)
SYMBOL(reverse_copy, std::, <algorithm>)
SYMBOL(reverse_iterator, std::, <iterator>)
SYMBOL(rewind, std::, <cstdio>)
SYMBOL(right, std::, <ios>)
SYMBOL(rint, std::, <cmath>)
SYMBOL(rotate, std::, <algorithm>)
SYMBOL(rotate_copy, std::, <algorithm>)
SYMBOL(round, std::, <cmath>)
SYMBOL(round_indeterminate, std::, <limits>)
SYMBOL(round_to_nearest, std::, <limits>)
SYMBOL(round_toward_infinity, std::, <limits>)
SYMBOL(round_toward_neg_infinity, std::, <limits>)
SYMBOL(round_toward_zero, std::, <limits>)
SYMBOL(runtime_error, std::, <stdexcept>)
SYMBOL(sample, std::, <algorithm>)
SYMBOL(scalbln, std::, <cmath>)
SYMBOL(scalbn, std::, <cmath>)
SYMBOL(scanf, std::, <cstdio>)
SYMBOL(scientific, std::, <ios>)
SYMBOL(scoped_allocator_adaptor, std::, <scoped_allocator>)
SYMBOL(search, std::, <algorithm>)
SYMBOL(search_n, std::, <algorithm>)
SYMBOL(seed_seq, std::, <random>)
SYMBOL(set, std::, <set>)
SYMBOL(set_difference, std::, <algorithm>)
SYMBOL(set_intersection, std::, <algorithm>)
SYMBOL(set_new_handler, std::, <new>)
SYMBOL(set_symmetric_difference, std::, <algorithm>)
SYMBOL(set_terminate, std::, <exception>)
SYMBOL(set_union, std::, <algorithm>)
SYMBOL(setbase, std::, <iomanip>)
SYMBOL(setbuf, std::, <cstdio>)
SYMBOL(setfill, std::, <iomanip>)
SYMBOL(setiosflags, std::, <iomanip>)
SYMBOL(setlocale, std::, <clocale>)
SYMBOL(setprecision, std::, <iomanip>)
SYMBOL(setvbuf, std::, <cstdio>)
SYMBOL(setw, std::, <iomanip>)
SYMBOL(shared_future, std::, <future>)
SYMBOL(shared_lock, std::, <shared_mutex>)
SYMBOL(shared_mutex, std::, <shared_mutex>)
SYMBOL(shared_ptr, std::, <memory>)
SYMBOL(shared_timed_mutex, std::, <shared_mutex>)
SYMBOL(shift_left, std::, <algorithm>)
SYMBOL(shift_right, std::, <algorithm>)
SYMBOL(showbase, std::, <ios>)
SYMBOL(showpoint, std::, <ios>)
SYMBOL(showpos, std::, <ios>)
SYMBOL(shuffle, std::, <algorithm>)
SYMBOL(shuffle_order_engine, std::, <random>)
SYMBOL(sig_atomic_t, std::, <csignal>)
SYMBOL(signal, std::, <csignal>)
SYMBOL(signbit, std::, <cmath>)
SYMBOL(sin, std::, <cmath>)
SYMBOL(sinh, std::, <cmath>)
SYMBOL(size, std::, <iterator>)
SYMBOL(skipws, std::, <ios>)
SYMBOL(slice, std::, <valarray>)
SYMBOL(slice_array, std::, <valarray>)
SYMBOL(smatch, std::, <regex>)
SYMBOL(snprintf, std::, <cstdio>)
SYMBOL(sort, std::, <algorithm>)
SYMBOL(sort_heap, std::, <algorithm>)
SYMBOL(span, std::, <span>)
SYMBOL(sprintf, std::, <cstdio>)
SYMBOL(sqrt, std::, <cmath>)
SYMBOL(srand, std::, <cstdlib>)
SYMBOL(sregex_iterator, std::, <regex>)
SYMBOL(sregex_token_iterator, std::, <regex>)
SYMBOL(sscanf, std::, <cstdio>)
SYMBOL(ssub_match, std::, <regex>)
SYMBOL(stable_partition, std::, <algorithm>)
SYMBOL(stable_sort, std::, <algorithm>)
SYMBOL(stack, std::, <stack>)
SYMBOL(static_pointer_cast, std::, <memory>)
SYMBOL(strcat, std::, <cstring>)
SYMBOL(strchr, std::, <cstring>)
SYMBOL(strcmp, std::, <cstring>)
SYMBOL(strcoll, std::, <cstring>)
SYMBOL(strcpy, std::, <cstring>)
SYMBOL(strcspn, std::, <cstring>)
SYMBOL(streambuf, std::, <streambuf>)
SYMBOL(streamoff, std::, <ios>)
SYMBOL(streampos, std::, <ios>)
SYMBOL(streamsize, std::, <ios>)
SYMBOL(strerror, std::, <cstring>)
SYMBOL(strftime, std::, <ctime>)
SYMBOL(string, std::, <string>)
SYMBOL(string_view, std::, <string_view>)
SYMBOL(stringbuf, std::, <sstream>)
SYMBOL(stringstream, std::, <sstream>)
SYMBOL(strlen, std::, <cstring>)
SYMBOL(strncat, std::, <cstring>)
SYMBOL(strncmp, std::, <cstring>)
SYMBOL(strncpy, std::, <cstring>)
SYMBOL(strong_equal, std::, <compare>)
SYMBOL(strong_equality, std::, <compare>)
SYMBOL(strong_order, std::, <compare>)
SYMBOL(strong_ordering, std::, <compare>)
SYMBOL(strpbrk, std::, <cstring>)
SYMBOL(strrchr, std::, <cstring>)
SYMBOL(strspn, std::, <cstring>)
SYMBOL(strstr, std::, <cstring>)
SYMBOL(strtod, std::, <cstdlib>)
SYMBOL(strtof, std::, <cstdlib>)
SYMBOL(strtoimax, std::, <cinttypes>)
SYMBOL(strtok, std::, <cstring>)
SYMBOL(strtol, std::, <cstdlib>)
SYMBOL(strtold, std::, <cstdlib>)
SYMBOL(strtoll, std::, <cstdlib>)
SYMBOL(strtoul, std::, <cstdlib>)
SYMBOL(strtoull, std::, <cstdlib>)
SYMBOL(strtoumax, std::, <cinttypes>)
SYMBOL(strxfrm, std::, <cstring>)
SYMBOL(student_t_distribution, std::, <random>)
SYMBOL(sub_match, std::, <regex>)
SYMBOL(subtract_with_carry_engine, std::, <random>)
SYMBOL(swap_ranges, std::, <algorithm>)
SYMBOL(swprintf, std::, <cwchar>)
SYMBOL(swscanf, std::, <cwchar>)
SYMBOL(syncbuf, std::, <syncstream>)
SYMBOL(system, std::, <cstdlib>)
SYMBOL(system_category, std::, <system_error>)
SYMBOL(system_error, std::, <system_error>)
SYMBOL(tan, std::, <cmath>)
SYMBOL(tanh, std::, <cmath>)
SYMBOL(tera, std::, <ratio>)
SYMBOL(terminate, std::, <exception>)
SYMBOL(terminate_handler, std::, <exception>)
SYMBOL(tgamma, std::, <cmath>)
SYMBOL(thread, std::, <thread>)
SYMBOL(throw_with_nested, std::, <exception>)
SYMBOL(tie, std::, <tuple>)
SYMBOL(time, std::, <ctime>)
SYMBOL(time_base, std::, <locale>)
SYMBOL(time_get, std::, <locale>)
SYMBOL(time_get_byname, std::, <locale>)
SYMBOL(time_put, std::, <locale>)
SYMBOL(time_put_byname, std::, <locale>)
SYMBOL(time_t, std::, <ctime>)
SYMBOL(timed_mutex, std::, <mutex>)
SYMBOL(timespec, std::, <ctime>)
SYMBOL(timespec_get, std::, <ctime>)
SYMBOL(tm, std::, <ctime>)
SYMBOL(tmpfile, std::, <cstdio>)
SYMBOL(tmpnam, std::, <cstdio>)
SYMBOL(to_address, std::, <memory>)
SYMBOL(to_chars, std::, <charconv>)
SYMBOL(to_integer, std::, <cstddef>)
SYMBOL(to_string, std::, <string>)
SYMBOL(tolower, std::, <cctype>)
SYMBOL(toupper, std::, <cctype>)
SYMBOL(towctrans, std::, <cwctype>)
SYMBOL(towlower, std::, <cwctype>)
SYMBOL(towupper, std::, <cwctype>)
SYMBOL(transform, std::, <algorithm>)
SYMBOL(transform_exclusive_scan, std::, <numeric>)
SYMBOL(transform_inclusive_scan, std::, <numeric>)
SYMBOL(transform_reduce, std::, <numeric>)
SYMBOL(true_type, std::, <type_traits>)
SYMBOL(trunc, std::, <cmath>)
SYMBOL(try_lock, std::, <mutex>)
SYMBOL(try_to_lock, std::, <mutex>)
SYMBOL(try_to_lock_t, std::, <mutex>)
SYMBOL(tuple, std::, <tuple>)
SYMBOL(tuple_cat, std::, <tuple>)
SYMBOL(type_identity, std::, <type_traits>)
SYMBOL(type_identity_t, std::, <type_traits>)
SYMBOL(type_index, std::, <typeindex>)
SYMBOL(type_info, std::, <typeinfo>)
SYMBOL(u16streampos, std::, <ios>)
SYMBOL(u16string, std::, <string>)
SYMBOL(u16string_view, std::, <string_view>)
SYMBOL(u32streampos, std::, <ios>)
SYMBOL(u32string, std::, <string>)
SYMBOL(u32string_view, std::, <string_view>)
SYMBOL(uint16_t, std::, <cstdint>)
SYMBOL(uint32_t, std::, <cstdint>)
SYMBOL(uint64_t, std::, <cstdint>)
SYMBOL(uint8_t, std::, <cstdint>)
SYMBOL(uint_fast16_t, std::, <cstdint>)
SYMBOL(uint_fast32_t, std::, <cstdint>)
SYMBOL(uint_fast64_t, std::, <cstdint>)
SYMBOL(uint_fast8_t, std::, <cstdint>)
SYMBOL(uint_least16_t, std::, <cstdint>)
SYMBOL(uint_least32_t, std::, <cstdint>)
SYMBOL(uint_least64_t, std::, <cstdint>)
SYMBOL(uint_least8_t, std::, <cstdint>)
SYMBOL(uintmax_t, std::, <cstdint>)
SYMBOL(uintptr_t, std::, <cstdint>)
SYMBOL(uncaught_exceptions, std::, <exception>)
SYMBOL(undeclare_no_pointers, std::, <memory>)
SYMBOL(undeclare_reachable, std::, <memory>)
SYMBOL(underflow_error, std::, <stdexcept>)
SYMBOL(underlying_type, std::, <type_traits>)
SYMBOL(underlying_type_t, std::, <type_traits>)
SYMBOL(ungetc, std::, <cstdio>)
SYMBOL(ungetwc, std::, <cwchar>)
SYMBOL(uniform_int_distribution, std::, <random>)
SYMBOL(uniform_real_distribution, std::, <random>)
SYMBOL(uninitialized_copy, std::, <memory>)
SYMBOL(uninitialized_copy_n, std::, <memory>)
SYMBOL(uninitialized_default_construct, std::, <memory>)
SYMBOL(uninitialized_default_construct_n, std::, <memory>)
SYMBOL(uninitialized_fill, std::, <memory>)
SYMBOL(uninitialized_fill_n, std::, <memory>)
SYMBOL(uninitialized_move, std::, <memory>)
SYMBOL(uninitialized_move_n, std::, <memory>)
SYMBOL(uninitialized_value_construct, std::, <memory>)
SYMBOL(uninitialized_value_construct_n, std::, <memory>)
SYMBOL(unique, std::, <algorithm>)
SYMBOL(unique_copy, std::, <algorithm>)
SYMBOL(unique_lock, std::, <mutex>)
SYMBOL(unique_ptr, std::, <memory>)
SYMBOL(unitbuf, std::, <ios>)
SYMBOL(unordered_map, std::, <unordered_map>)
SYMBOL(unordered_multimap, std::, <unordered_map>)
SYMBOL(unordered_multiset, std::, <unordered_set>)
SYMBOL(unordered_set, std::, <unordered_set>)
SYMBOL(upper_bound, std::, <algorithm>)
SYMBOL(uppercase, std::, <ios>)
SYMBOL(use_facet, std::, <locale>)
SYMBOL(uses_allocator, std::, <memory>)
SYMBOL(uses_allocator_v, std::, <memory>)
SYMBOL(va_list, std::, <cstdarg>)
SYMBOL(valarray, std::, <valarray>)
SYMBOL(variant, std::, <variant>)
SYMBOL(variant_alternative, std::, <variant>)
SYMBOL(variant_alternative_t, std::, <variant>)
SYMBOL(variant_npos, std::, <variant>)
SYMBOL(variant_size, std::, <variant>)
SYMBOL(variant_size_v, std::, <variant>)
SYMBOL(vector, std::, <vector>)
SYMBOL(vfprintf, std::, <cstdio>)
SYMBOL(vfscanf, std::, <cstdio>)
SYMBOL(vfwprintf, std::, <cwchar>)
SYMBOL(vfwscanf, std::, <cwchar>)
SYMBOL(visit, std::, <variant>)
SYMBOL(void_t, std::, <type_traits>)
SYMBOL(vprintf, std::, <cstdio>)
SYMBOL(vscanf, std::, <cstdio>)
SYMBOL(vsnprintf, std::, <cstdio>)
SYMBOL(vsprintf, std::, <cstdio>)
SYMBOL(vsscanf, std::, <cstdio>)
SYMBOL(vswprintf, std::, <cwchar>)
SYMBOL(vswscanf, std::, <cwchar>)
SYMBOL(vwprintf, std::, <cwchar>)
SYMBOL(vwscanf, std::, <cwchar>)
SYMBOL(wbuffer_convert, std::, <locale>)
SYMBOL(wcerr, std::, <iostream>)
SYMBOL(wcin, std::, <iostream>)
SYMBOL(wclog, std::, <iostream>)
SYMBOL(wcmatch, std::, <regex>)
SYMBOL(wcout, std::, <iostream>)
SYMBOL(wcregex_iterator, std::, <regex>)
SYMBOL(wcregex_token_iterator, std::, <regex>)
SYMBOL(wcrtomb, std::, <cwchar>)
SYMBOL(wcscat, std::, <cwchar>)
SYMBOL(wcschr, std::, <cwchar>)
SYMBOL(wcscmp, std::, <cwchar>)
SYMBOL(wcscoll, std::, <cwchar>)
SYMBOL(wcscpy, std::, <cwchar>)
SYMBOL(wcscspn, std::, <cwchar>)
SYMBOL(wcsftime, std::, <cwchar>)
SYMBOL(wcslen, std::, <cwchar>)
SYMBOL(wcsncat, std::, <cwchar>)
SYMBOL(wcsncmp, std::, <cwchar>)
SYMBOL(wcsncpy, std::, <cwchar>)
SYMBOL(wcspbrk, std::, <cwchar>)
SYMBOL(wcsrchr, std::, <cwchar>)
SYMBOL(wcsrtombs, std::, <cwchar>)
SYMBOL(wcsspn, std::, <cwchar>)
SYMBOL(wcsstr, std::, <cwchar>)
SYMBOL(wcstod, std::, <cwchar>)
SYMBOL(wcstof, std::, <cwchar>)
SYMBOL(wcstoimax, std::, <cinttypes>)
SYMBOL(wcstok, std::, <cwchar>)
SYMBOL(wcstol, std::, <cwchar>)
SYMBOL(wcstold, std::, <cwchar>)
SYMBOL(wcstoll, std::, <cwchar>)
SYMBOL(wcstombs, std::, <cstdlib>)
SYMBOL(wcstoul, std::, <cwchar>)
SYMBOL(wcstoull, std::, <cwchar>)
SYMBOL(wcstoumax, std::, <cinttypes>)
SYMBOL(wcsub_match, std::, <regex>)
SYMBOL(wcsxfrm, std::, <cwchar>)
SYMBOL(wctob, std::, <cwchar>)
SYMBOL(wctomb, std::, <cstdlib>)
SYMBOL(wctrans, std::, <cwctype>)
SYMBOL(wctrans_t, std::, <cwctype>)
SYMBOL(wctype, std::, <cwctype>)
SYMBOL(wctype_t, std::, <cwctype>)
SYMBOL(weak_equal, std::, <compare>)
SYMBOL(weak_equality, std::, <compare>)
SYMBOL(weak_order, std::, <compare>)
SYMBOL(weak_ordering, std::, <compare>)
SYMBOL(weak_ptr, std::, <memory>)
SYMBOL(weibull_distribution, std::, <random>)
SYMBOL(wfilebuf, std::, <streambuf>)
SYMBOL(wfstream, std::, <fstream>)
SYMBOL(wifstream, std::, <fstream>)
SYMBOL(wios, std::, <ios>)
SYMBOL(wiostream, std::, <istream>)
SYMBOL(wistream, std::, <istream>)
SYMBOL(wistringstream, std::, <sstream>)
SYMBOL(wmemchr, std::, <cwchar>)
SYMBOL(wmemcmp, std::, <cwchar>)
SYMBOL(wmemcpy, std::, <cwchar>)
SYMBOL(wmemmove, std::, <cwchar>)
SYMBOL(wmemset, std::, <cwchar>)
SYMBOL(wofstream, std::, <fstream>)
SYMBOL(wostream, std::, <ostream>)
SYMBOL(wostringstream, std::, <sstream>)
SYMBOL(wosyncstream, std::, <syncstream>)
SYMBOL(wprintf, std::, <cwchar>)
SYMBOL(wregex, std::, <regex>)
SYMBOL(ws, std::, <istream>)
SYMBOL(wscanf, std::, <cwchar>)
SYMBOL(wsmatch, std::, <regex>)
SYMBOL(wsregex_iterator, std::, <regex>)
SYMBOL(wsregex_token_iterator, std::, <regex>)
SYMBOL(wssub_match, std::, <regex>)
SYMBOL(wstreambuf, std::, <streambuf>)
SYMBOL(wstreampos, std::, <ios>)
SYMBOL(wstring, std::, <string>)
SYMBOL(wstring_convert, std::, <locale>)
SYMBOL(wstring_view, std::, <string_view>)
SYMBOL(wstringbuf, std::, <sstream>)
SYMBOL(wstringstream, std::, <sstream>)
SYMBOL(wsyncbuf, std::, <syncstream>)
SYMBOL(yocto, std::, <ratio>)
SYMBOL(yotta, std::, <ratio>)
SYMBOL(zepto, std::, <ratio>)
SYMBOL(zetta, std::, <ratio>)
SYMBOL(April, std::chrono::, <chrono>)
SYMBOL(August, std::chrono::, <chrono>)
SYMBOL(December, std::chrono::, <chrono>)
SYMBOL(February, std::chrono::, <chrono>)
SYMBOL(Friday, std::chrono::, <chrono>)
SYMBOL(January, std::chrono::, <chrono>)
SYMBOL(July, std::chrono::, <chrono>)
SYMBOL(June, std::chrono::, <chrono>)
SYMBOL(March, std::chrono::, <chrono>)
SYMBOL(May, std::chrono::, <chrono>)
SYMBOL(Monday, std::chrono::, <chrono>)
SYMBOL(November, std::chrono::, <chrono>)
SYMBOL(October, std::chrono::, <chrono>)
SYMBOL(Saturday, std::chrono::, <chrono>)
SYMBOL(September, std::chrono::, <chrono>)
SYMBOL(Sunday, std::chrono::, <chrono>)
SYMBOL(Thursday, std::chrono::, <chrono>)
SYMBOL(Tuesday, std::chrono::, <chrono>)
SYMBOL(Wednesday, std::chrono::, <chrono>)
SYMBOL(abs, std::chrono::, <chrono>)
SYMBOL(ambiguous_local_time, std::chrono::, <chrono>)
SYMBOL(ceil, std::chrono::, <chrono>)
SYMBOL(choose, std::chrono::, <chrono>)
SYMBOL(clock_cast, std::chrono::, <chrono>)
SYMBOL(clock_time_conversion, std::chrono::, <chrono>)
SYMBOL(current_zone, std::chrono::, <chrono>)
SYMBOL(day, std::chrono::, <chrono>)
SYMBOL(duration, std::chrono::, <chrono>)
SYMBOL(duration_values, std::chrono::, <chrono>)
SYMBOL(file_clock, std::chrono::, <chrono>)
SYMBOL(file_seconds, std::chrono::, <chrono>)
SYMBOL(file_time, std::chrono::, <chrono>)
SYMBOL(floor, std::chrono::, <chrono>)
SYMBOL(gps_clock, std::chrono::, <chrono>)
SYMBOL(gps_seconds, std::chrono::, <chrono>)
SYMBOL(gps_time, std::chrono::, <chrono>)
SYMBOL(high_resolution_clock, std::chrono::, <chrono>)
SYMBOL(hours, std::chrono::, <chrono>)
SYMBOL(is_clock, std::chrono::, <chrono>)
SYMBOL(is_clock_v, std::chrono::, <chrono>)
SYMBOL(last, std::chrono::, <chrono>)
SYMBOL(last_spec, std::chrono::, <chrono>)
SYMBOL(leap, std::chrono::, <chrono>)
SYMBOL(link, std::chrono::, <chrono>)
SYMBOL(local_info, std::chrono::, <chrono>)
SYMBOL(local_seconds, std::chrono::, <chrono>)
SYMBOL(local_t, std::chrono::, <chrono>)
SYMBOL(local_time, std::chrono::, <chrono>)
SYMBOL(locate_zone, std::chrono::, <chrono>)
SYMBOL(microseconds, std::chrono::, <chrono>)
SYMBOL(milliseconds, std::chrono::, <chrono>)
SYMBOL(minutes, std::chrono::, <chrono>)
SYMBOL(month, std::chrono::, <chrono>)
SYMBOL(month_day, std::chrono::, <chrono>)
SYMBOL(month_day_last, std::chrono::, <chrono>)
SYMBOL(month_weekday, std::chrono::, <chrono>)
SYMBOL(month_weekday_last, std::chrono::, <chrono>)
SYMBOL(nanoseconds, std::chrono::, <chrono>)
SYMBOL(nonexistent_local_time, std::chrono::, <chrono>)
SYMBOL(round, std::chrono::, <chrono>)
SYMBOL(seconds, std::chrono::, <chrono>)
SYMBOL(steady_clock, std::chrono::, <chrono>)
SYMBOL(sys_days, std::chrono::, <chrono>)
SYMBOL(sys_info, std::chrono::, <chrono>)
SYMBOL(sys_seconds, std::chrono::, <chrono>)
SYMBOL(sys_time, std::chrono::, <chrono>)
SYMBOL(system_clock, std::chrono::, <chrono>)
SYMBOL(tai_clock, std::chrono::, <chrono>)
SYMBOL(tai_seconds, std::chrono::, <chrono>)
SYMBOL(tai_time, std::chrono::, <chrono>)
SYMBOL(time_of_day, std::chrono::, <chrono>)
SYMBOL(time_point, std::chrono::, <chrono>)
SYMBOL(time_zone, std::chrono::, <chrono>)
SYMBOL(treat_as_floating_point, std::chrono::, <chrono>)
SYMBOL(treat_as_floating_point_v, std::chrono::, <chrono>)
SYMBOL(tzdb, std::chrono::, <chrono>)
SYMBOL(tzdb_list, std::chrono::, <chrono>)
SYMBOL(utc_clock, std::chrono::, <chrono>)
SYMBOL(utc_seconds, std::chrono::, <chrono>)
SYMBOL(utc_time, std::chrono::, <chrono>)
SYMBOL(weekday, std::chrono::, <chrono>)
SYMBOL(weekday_indexed, std::chrono::, <chrono>)
SYMBOL(weekday_last, std::chrono::, <chrono>)
SYMBOL(year, std::chrono::, <chrono>)
SYMBOL(year_month, std::chrono::, <chrono>)
SYMBOL(year_month_day, std::chrono::, <chrono>)
SYMBOL(year_month_day_last, std::chrono::, <chrono>)
SYMBOL(year_month_weekday, std::chrono::, <chrono>)
SYMBOL(year_month_weekday_last, std::chrono::, <chrono>)
SYMBOL(zoned_time, std::chrono::, <chrono>)
SYMBOL(zoned_traits, std::chrono::, <chrono>)
SYMBOL(absolute, std::filesystem::, <filesystem>)
SYMBOL(canonical, std::filesystem::, <filesystem>)
SYMBOL(copy, std::filesystem::, <filesystem>)
SYMBOL(copy_file, std::filesystem::, <filesystem>)
SYMBOL(copy_options, std::filesystem::, <filesystem>)
SYMBOL(copy_symlink, std::filesystem::, <filesystem>)
SYMBOL(create_directories, std::filesystem::, <filesystem>)
SYMBOL(create_directory, std::filesystem::, <filesystem>)
SYMBOL(create_directory_symlink, std::filesystem::, <filesystem>)
SYMBOL(create_hard_link, std::filesystem::, <filesystem>)
SYMBOL(create_symlink, std::filesystem::, <filesystem>)
SYMBOL(current_path, std::filesystem::, <filesystem>)
SYMBOL(directory_entry, std::filesystem::, <filesystem>)
SYMBOL(directory_iterator, std::filesystem::, <filesystem>)
SYMBOL(directory_options, std::filesystem::, <filesystem>)
SYMBOL(equivalent, std::filesystem::, <filesystem>)
SYMBOL(exists, std::filesystem::, <filesystem>)
SYMBOL(file_size, std::filesystem::, <filesystem>)
SYMBOL(file_status, std::filesystem::, <filesystem>)
SYMBOL(file_time_type, std::filesystem::, <filesystem>)
SYMBOL(file_type, std::filesystem::, <filesystem>)
SYMBOL(filesystem_error, std::filesystem::, <filesystem>)
SYMBOL(hard_link_count, std::filesystem::, <filesystem>)
SYMBOL(is_block_file, std::filesystem::, <filesystem>)
SYMBOL(is_character_file, std::filesystem::, <filesystem>)
SYMBOL(is_directory, std::filesystem::, <filesystem>)
SYMBOL(is_empty, std::filesystem::, <filesystem>)
SYMBOL(is_fifo, std::filesystem::, <filesystem>)
SYMBOL(is_other, std::filesystem::, <filesystem>)
SYMBOL(is_regular_file, std::filesystem::, <filesystem>)
SYMBOL(is_socket, std::filesystem::, <filesystem>)
SYMBOL(is_symlink, std::filesystem::, <filesystem>)
SYMBOL(last_write_time, std::filesystem::, <filesystem>)
SYMBOL(path, std::filesystem::, <filesystem>)
SYMBOL(perm_options, std::filesystem::, <filesystem>)
SYMBOL(permissions, std::filesystem::, <filesystem>)
SYMBOL(perms, std::filesystem::, <filesystem>)
SYMBOL(proximate, std::filesystem::, <filesystem>)
SYMBOL(read_symlink, std::filesystem::, <filesystem>)
SYMBOL(recursive_directory_iterator, std::filesystem::, <filesystem>)
SYMBOL(relative, std::filesystem::, <filesystem>)
SYMBOL(remove, std::filesystem::, <filesystem>)
SYMBOL(remove_all, std::filesystem::, <filesystem>)
SYMBOL(rename, std::filesystem::, <filesystem>)
SYMBOL(resize_file, std::filesystem::, <filesystem>)
SYMBOL(space, std::filesystem::, <filesystem>)
SYMBOL(space_info, std::filesystem::, <filesystem>)
SYMBOL(status, std::filesystem::, <filesystem>)
SYMBOL(status_known, std::filesystem::, <filesystem>)
SYMBOL(symlink_status, std::filesystem::, <filesystem>)
SYMBOL(temp_directory_path, std::filesystem::, <filesystem>)
SYMBOL(u8path, std::filesystem::, <filesystem>)
SYMBOL(weakly_canonical, std::filesystem::, <filesystem>)
SYMBOL(basic_string, std::pmr::, <string>)
SYMBOL(deque, std::pmr::, <deque>)
SYMBOL(forward_list, std::pmr::, <forward_list>)
SYMBOL(get_default_resource, std::pmr::, <memory_resource>)
SYMBOL(list, std::pmr::, <list>)
SYMBOL(map, std::pmr::, <map>)
SYMBOL(memory_resource, std::pmr::, <memory_resource>)
SYMBOL(monotonic_buffer_resource, std::pmr::, <memory_resource>)
SYMBOL(multimap, std::pmr::, <map>)
SYMBOL(multiset, std::pmr::, <set>)
SYMBOL(new_delete_resource, std::pmr::, <memory_resource>)
SYMBOL(null_memory_resource, std::pmr::, <memory_resource>)
SYMBOL(polymorphic_allocator, std::pmr::, <memory_resource>)
SYMBOL(pool_options, std::pmr::, <memory_resource>)
SYMBOL(set, std::pmr::, <set>)
SYMBOL(set_default_resource, std::pmr::, <memory_resource>)
SYMBOL(string, std::pmr::, <string>)
SYMBOL(synchronized_pool_resource, std::pmr::, <memory_resource>)
SYMBOL(u16string, std::pmr::, <string>)
SYMBOL(u32string, std::pmr::, <string>)
SYMBOL(unordered_map, std::pmr::, <unordered_map>)
SYMBOL(unordered_multimap, std::pmr::, <unordered_map>)
SYMBOL(unordered_multiset, std::pmr::, <unordered_set>)
SYMBOL(unordered_set, std::pmr::, <unordered_set>)
SYMBOL(unsynchronized_pool_resource, std::pmr::, <memory_resource>)
SYMBOL(vector, std::pmr::, <vector>)
SYMBOL(wstring, std::pmr::, <string>)
SYMBOL(ECMAScript, std::regex_constants::, <regex>)
SYMBOL(awk, std::regex_constants::, <regex>)
SYMBOL(basic, std::regex_constants::, <regex>)
SYMBOL(collate, std::regex_constants::, <regex>)
SYMBOL(egrep, std::regex_constants::, <regex>)
SYMBOL(error_backref, std::regex_constants::, <regex>)
SYMBOL(error_badbrace, std::regex_constants::, <regex>)
SYMBOL(error_badrepeat, std::regex_constants::, <regex>)
SYMBOL(error_brace, std::regex_constants::, <regex>)
SYMBOL(error_brack, std::regex_constants::, <regex>)
SYMBOL(error_collate, std::regex_constants::, <regex>)
SYMBOL(error_complexity, std::regex_constants::, <regex>)
SYMBOL(error_ctype, std::regex_constants::, <regex>)
SYMBOL(error_escape, std::regex_constants::, <regex>)
SYMBOL(error_paren, std::regex_constants::, <regex>)
SYMBOL(error_range, std::regex_constants::, <regex>)
SYMBOL(error_space, std::regex_constants::, <regex>)
SYMBOL(error_stack, std::regex_constants::, <regex>)
SYMBOL(error_type, std::regex_constants::, <regex>)
SYMBOL(extended, std::regex_constants::, <regex>)
SYMBOL(format_default, std::regex_constants::, <regex>)
SYMBOL(format_first_only, std::regex_constants::, <regex>)
SYMBOL(format_no_copy, std::regex_constants::, <regex>)
SYMBOL(format_sed, std::regex_constants::, <regex>)
SYMBOL(grep, std::regex_constants::, <regex>)
SYMBOL(icase, std::regex_constants::, <regex>)
SYMBOL(match_any, std::regex_constants::, <regex>)
SYMBOL(match_continuous, std::regex_constants::, <regex>)
SYMBOL(match_default, std::regex_constants::, <regex>)
SYMBOL(match_flag_type, std::regex_constants::, <regex>)
SYMBOL(match_not_bol, std::regex_constants::, <regex>)
SYMBOL(match_not_bow, std::regex_constants::, <regex>)
SYMBOL(match_not_eol, std::regex_constants::, <regex>)
SYMBOL(match_not_eow, std::regex_constants::, <regex>)
SYMBOL(match_not_null, std::regex_constants::, <regex>)
SYMBOL(match_prev_avail, std::regex_constants::, <regex>)
SYMBOL(multiline, std::regex_constants::, <regex>)
SYMBOL(nosubs, std::regex_constants::, <regex>)
SYMBOL(optimize, std::regex_constants::, <regex>)
SYMBOL(syntax_option_type, std::regex_constants::, <regex>)
SYMBOL(get_id, std::this_thread::, <thread>)
SYMBOL(sleep_for, std::this_thread::, <thread>)
SYMBOL(sleep_until, std::this_thread::, <thread>)
SYMBOL(yield, std::this_thread::, <thread>)