icrate 0.1.2

Bindings to Apple's frameworks
Documentation
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
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
[dependencies.block2]
default-features = false
optional = true
version = "0.4.0"

[dependencies.dispatch]
optional = true
version = "0.2.0"

[dependencies.objc2]
default-features = false
optional = true
version = "0.5.0"

[dev-dependencies.static_assertions]
version = "1.1.0"

[[example]]
name = "basic_usage"
required-features = ["unstable-example-basic_usage"]

[[example]]
name = "delegate"
required-features = ["unstable-example-delegate"]

[[example]]
name = "speech_synthesis"
required-features = ["unstable-example-speech_synthesis"]

[[example]]
name = "nspasteboard"
required-features = ["unstable-example-nspasteboard"]

[[example]]
name = "browser"
required-features = ["unstable-example-browser"]

[[example]]
name = "metal"
required-features = ["unstable-example-metal"]

[features]
Accessibility = ["Foundation"]
Accessibility_AXBrailleMap = []
Accessibility_AXCategoricalDataAxisDescriptor = []
Accessibility_AXChartDescriptor = []
Accessibility_AXCustomContent = []
Accessibility_AXDataPoint = []
Accessibility_AXDataPointValue = []
Accessibility_AXDataSeriesDescriptor = []
Accessibility_AXLiveAudioGraph = []
Accessibility_AXNumericDataAxisDescriptor = []
Accessibility_all = ["Accessibility", "Accessibility_AXBrailleMap", "Accessibility_AXCategoricalDataAxisDescriptor", "Accessibility_AXChartDescriptor", "Accessibility_AXCustomContent", "Accessibility_AXDataPoint", "Accessibility_AXDataPointValue", "Accessibility_AXDataSeriesDescriptor", "Accessibility_AXLiveAudioGraph", "Accessibility_AXNumericDataAxisDescriptor"]
AdServices = ["Foundation"]
AdServices_AAAttribution = []
AdServices_all = ["AdServices", "AdServices_AAAttribution"]
AdSupport = ["Foundation"]
AdSupport_ASIdentifierManager = []
AdSupport_all = ["AdSupport", "AdSupport_ASIdentifierManager"]
AppKit = ["CoreData", "Foundation", "AppKit_NSApplication", "AppKit_NSCollectionLayoutSection", "AppKit_NSCollectionLayoutGroupCustomItem", "AppKit_NSCollectionView", "AppKit_NSView", "AppKit_NSTableView", "AppKit_NSTableColumn", "AppKit_NSTableRowView", "Foundation_NSIndexPath", "Foundation_NSArray", "Foundation_NSCoder"]
AppKit_NSATSTypesetter = ["AppKit_NSTypesetter"]
AppKit_NSAccessibilityCustomAction = []
AppKit_NSAccessibilityCustomRotor = []
AppKit_NSAccessibilityCustomRotorItemResult = []
AppKit_NSAccessibilityCustomRotorSearchParameters = []
AppKit_NSAccessibilityElement = []
AppKit_NSActionCell = ["AppKit_NSCell"]
AppKit_NSAlert = []
AppKit_NSAlignmentFeedbackFilter = []
AppKit_NSAnimation = []
AppKit_NSAnimationContext = []
AppKit_NSAppearance = []
AppKit_NSApplication = ["AppKit_NSResponder"]
AppKit_NSArrayController = ["AppKit_NSObjectController"]
AppKit_NSBezierPath = []
AppKit_NSBindingSelectionMarker = []
AppKit_NSBitmapImageRep = ["AppKit_NSImageRep"]
AppKit_NSBox = ["AppKit_NSView"]
AppKit_NSBrowser = ["AppKit_NSControl"]
AppKit_NSBrowserCell = ["AppKit_NSCell"]
AppKit_NSButton = ["AppKit_NSControl"]
AppKit_NSButtonCell = ["AppKit_NSActionCell"]
AppKit_NSButtonTouchBarItem = ["AppKit_NSTouchBarItem"]
AppKit_NSCachedImageRep = ["AppKit_NSImageRep"]
AppKit_NSCandidateListTouchBarItem = ["AppKit_NSTouchBarItem"]
AppKit_NSCell = []
AppKit_NSClickGestureRecognizer = ["AppKit_NSGestureRecognizer"]
AppKit_NSClipView = ["AppKit_NSView"]
AppKit_NSCollectionLayoutAnchor = []
AppKit_NSCollectionLayoutBoundarySupplementaryItem = ["AppKit_NSCollectionLayoutSupplementaryItem"]
AppKit_NSCollectionLayoutDecorationItem = ["AppKit_NSCollectionLayoutItem"]
AppKit_NSCollectionLayoutDimension = []
AppKit_NSCollectionLayoutEdgeSpacing = []
AppKit_NSCollectionLayoutGroup = ["AppKit_NSCollectionLayoutItem"]
AppKit_NSCollectionLayoutGroupCustomItem = []
AppKit_NSCollectionLayoutItem = []
AppKit_NSCollectionLayoutSection = []
AppKit_NSCollectionLayoutSize = []
AppKit_NSCollectionLayoutSpacing = []
AppKit_NSCollectionLayoutSupplementaryItem = ["AppKit_NSCollectionLayoutItem"]
AppKit_NSCollectionView = ["AppKit_NSView"]
AppKit_NSCollectionViewCompositionalLayout = ["AppKit_NSCollectionViewLayout"]
AppKit_NSCollectionViewCompositionalLayoutConfiguration = []
AppKit_NSCollectionViewDiffableDataSource = []
AppKit_NSCollectionViewFlowLayout = ["AppKit_NSCollectionViewLayout"]
AppKit_NSCollectionViewFlowLayoutInvalidationContext = ["AppKit_NSCollectionViewLayoutInvalidationContext"]
AppKit_NSCollectionViewGridLayout = ["AppKit_NSCollectionViewLayout"]
AppKit_NSCollectionViewItem = ["AppKit_NSViewController"]
AppKit_NSCollectionViewLayout = []
AppKit_NSCollectionViewLayoutAttributes = []
AppKit_NSCollectionViewLayoutInvalidationContext = []
AppKit_NSCollectionViewTransitionLayout = ["AppKit_NSCollectionViewLayout"]
AppKit_NSCollectionViewUpdateItem = []
AppKit_NSColor = []
AppKit_NSColorList = []
AppKit_NSColorPanel = ["AppKit_NSPanel"]
AppKit_NSColorPicker = []
AppKit_NSColorPickerTouchBarItem = ["AppKit_NSTouchBarItem"]
AppKit_NSColorSampler = []
AppKit_NSColorSpace = []
AppKit_NSColorWell = ["AppKit_NSControl"]
AppKit_NSComboBox = ["AppKit_NSTextField"]
AppKit_NSComboBoxCell = ["AppKit_NSTextFieldCell"]
AppKit_NSComboButton = ["AppKit_NSControl"]
AppKit_NSControl = ["AppKit_NSView"]
AppKit_NSController = []
AppKit_NSCursor = []
AppKit_NSCustomImageRep = ["AppKit_NSImageRep"]
AppKit_NSCustomTouchBarItem = ["AppKit_NSTouchBarItem"]
AppKit_NSDataAsset = []
AppKit_NSDatePicker = ["AppKit_NSControl"]
AppKit_NSDatePickerCell = ["AppKit_NSActionCell"]
AppKit_NSDictionaryController = ["AppKit_NSArrayController"]
AppKit_NSDictionaryControllerKeyValuePair = []
AppKit_NSDiffableDataSourceSnapshot = []
AppKit_NSDockTile = []
AppKit_NSDocument = []
AppKit_NSDocumentController = []
AppKit_NSDraggingImageComponent = []
AppKit_NSDraggingItem = []
AppKit_NSDraggingSession = []
AppKit_NSDrawer = ["AppKit_NSResponder"]
AppKit_NSEPSImageRep = ["AppKit_NSImageRep"]
AppKit_NSEvent = []
AppKit_NSFilePromiseProvider = []
AppKit_NSFilePromiseReceiver = []
AppKit_NSFont = []
AppKit_NSFontAssetRequest = []
AppKit_NSFontCollection = []
AppKit_NSFontDescriptor = []
AppKit_NSFontManager = []
AppKit_NSFontPanel = ["AppKit_NSPanel"]
AppKit_NSForm = ["AppKit_NSMatrix"]
AppKit_NSFormCell = ["AppKit_NSActionCell"]
AppKit_NSGestureRecognizer = []
AppKit_NSGlyphGenerator = []
AppKit_NSGlyphInfo = []
AppKit_NSGradient = []
AppKit_NSGraphicsContext = []
AppKit_NSGridCell = []
AppKit_NSGridColumn = []
AppKit_NSGridRow = []
AppKit_NSGridView = ["AppKit_NSView"]
AppKit_NSGroupTouchBarItem = ["AppKit_NSTouchBarItem"]
AppKit_NSHapticFeedbackManager = []
AppKit_NSHelpManager = []
AppKit_NSImage = []
AppKit_NSImageCell = ["AppKit_NSCell"]
AppKit_NSImageRep = []
AppKit_NSImageSymbolConfiguration = []
AppKit_NSImageView = ["AppKit_NSControl"]
AppKit_NSInputManager = []
AppKit_NSInputServer = []
AppKit_NSLayoutAnchor = []
AppKit_NSLayoutConstraint = []
AppKit_NSLayoutDimension = ["AppKit_NSLayoutAnchor"]
AppKit_NSLayoutGuide = []
AppKit_NSLayoutManager = []
AppKit_NSLayoutXAxisAnchor = ["AppKit_NSLayoutAnchor"]
AppKit_NSLayoutYAxisAnchor = ["AppKit_NSLayoutAnchor"]
AppKit_NSLevelIndicator = ["AppKit_NSControl"]
AppKit_NSLevelIndicatorCell = ["AppKit_NSActionCell"]
AppKit_NSMagnificationGestureRecognizer = ["AppKit_NSGestureRecognizer"]
AppKit_NSMatrix = ["AppKit_NSControl"]
AppKit_NSMediaLibraryBrowserController = []
AppKit_NSMenu = []
AppKit_NSMenuItem = []
AppKit_NSMenuItemBadge = []
AppKit_NSMenuItemCell = ["AppKit_NSButtonCell"]
AppKit_NSMenuToolbarItem = ["AppKit_NSToolbarItem"]
AppKit_NSMovie = []
AppKit_NSMutableFontCollection = ["AppKit_NSFontCollection"]
AppKit_NSMutableParagraphStyle = ["AppKit_NSParagraphStyle"]
AppKit_NSNib = []
AppKit_NSObjectController = ["AppKit_NSController"]
AppKit_NSOpenPanel = ["AppKit_NSSavePanel"]
AppKit_NSOutlineView = ["AppKit_NSTableView"]
AppKit_NSPDFImageRep = ["AppKit_NSImageRep"]
AppKit_NSPDFInfo = []
AppKit_NSPDFPanel = []
AppKit_NSPICTImageRep = ["AppKit_NSImageRep"]
AppKit_NSPageController = ["AppKit_NSViewController"]
AppKit_NSPageLayout = []
AppKit_NSPanGestureRecognizer = ["AppKit_NSGestureRecognizer"]
AppKit_NSPanel = ["AppKit_NSWindow"]
AppKit_NSParagraphStyle = []
AppKit_NSPasteboard = []
AppKit_NSPasteboardItem = []
AppKit_NSPathCell = ["AppKit_NSActionCell"]
AppKit_NSPathComponentCell = ["AppKit_NSTextFieldCell"]
AppKit_NSPathControl = ["AppKit_NSControl"]
AppKit_NSPathControlItem = []
AppKit_NSPersistentDocument = ["AppKit_NSDocument"]
AppKit_NSPickerTouchBarItem = ["AppKit_NSTouchBarItem"]
AppKit_NSPopUpButton = ["AppKit_NSButton"]
AppKit_NSPopUpButtonCell = ["AppKit_NSMenuItemCell"]
AppKit_NSPopover = ["AppKit_NSResponder"]
AppKit_NSPopoverTouchBarItem = ["AppKit_NSTouchBarItem"]
AppKit_NSPredicateEditor = ["AppKit_NSRuleEditor"]
AppKit_NSPredicateEditorRowTemplate = []
AppKit_NSPressGestureRecognizer = ["AppKit_NSGestureRecognizer"]
AppKit_NSPressureConfiguration = []
AppKit_NSPreviewRepresentingActivityItem = []
AppKit_NSPrintInfo = []
AppKit_NSPrintOperation = []
AppKit_NSPrintPanel = []
AppKit_NSPrinter = []
AppKit_NSProgressIndicator = ["AppKit_NSView"]
AppKit_NSResponder = []
AppKit_NSRotationGestureRecognizer = ["AppKit_NSGestureRecognizer"]
AppKit_NSRuleEditor = ["AppKit_NSControl"]
AppKit_NSRulerMarker = []
AppKit_NSRulerView = ["AppKit_NSView"]
AppKit_NSRunningApplication = []
AppKit_NSSavePanel = ["AppKit_NSPanel"]
AppKit_NSScreen = []
AppKit_NSScrollView = ["AppKit_NSView"]
AppKit_NSScroller = ["AppKit_NSControl"]
AppKit_NSScrubber = ["AppKit_NSView"]
AppKit_NSScrubberArrangedView = ["AppKit_NSView"]
AppKit_NSScrubberFlowLayout = ["AppKit_NSScrubberLayout"]
AppKit_NSScrubberImageItemView = ["AppKit_NSScrubberItemView"]
AppKit_NSScrubberItemView = ["AppKit_NSScrubberArrangedView"]
AppKit_NSScrubberLayout = []
AppKit_NSScrubberLayoutAttributes = []
AppKit_NSScrubberProportionalLayout = ["AppKit_NSScrubberLayout"]
AppKit_NSScrubberSelectionStyle = []
AppKit_NSScrubberSelectionView = ["AppKit_NSScrubberArrangedView"]
AppKit_NSScrubberTextItemView = ["AppKit_NSScrubberItemView"]
AppKit_NSSearchField = ["AppKit_NSTextField"]
AppKit_NSSearchFieldCell = ["AppKit_NSTextFieldCell"]
AppKit_NSSearchToolbarItem = ["AppKit_NSToolbarItem"]
AppKit_NSSecureTextField = ["AppKit_NSTextField"]
AppKit_NSSecureTextFieldCell = ["AppKit_NSTextFieldCell"]
AppKit_NSSegmentedCell = ["AppKit_NSActionCell"]
AppKit_NSSegmentedControl = ["AppKit_NSControl"]
AppKit_NSShadow = []
AppKit_NSSharingService = []
AppKit_NSSharingServicePicker = []
AppKit_NSSharingServicePickerToolbarItem = ["AppKit_NSToolbarItem"]
AppKit_NSSharingServicePickerTouchBarItem = ["AppKit_NSTouchBarItem"]
AppKit_NSSlider = ["AppKit_NSControl"]
AppKit_NSSliderAccessory = []
AppKit_NSSliderAccessoryBehavior = []
AppKit_NSSliderCell = ["AppKit_NSActionCell"]
AppKit_NSSliderTouchBarItem = ["AppKit_NSTouchBarItem"]
AppKit_NSSound = []
AppKit_NSSpeechRecognizer = []
AppKit_NSSpeechSynthesizer = []
AppKit_NSSpellChecker = []
AppKit_NSSplitView = ["AppKit_NSView"]
AppKit_NSSplitViewController = ["AppKit_NSViewController"]
AppKit_NSSplitViewItem = []
AppKit_NSStackView = ["AppKit_NSView"]
AppKit_NSStatusBar = []
AppKit_NSStatusBarButton = ["AppKit_NSButton"]
AppKit_NSStatusItem = []
AppKit_NSStepper = ["AppKit_NSControl"]
AppKit_NSStepperCell = ["AppKit_NSActionCell"]
AppKit_NSStepperTouchBarItem = ["AppKit_NSTouchBarItem"]
AppKit_NSStoryboard = []
AppKit_NSStoryboardSegue = []
AppKit_NSStringDrawingContext = []
AppKit_NSSwitch = ["AppKit_NSControl"]
AppKit_NSTabView = ["AppKit_NSView"]
AppKit_NSTabViewController = ["AppKit_NSViewController"]
AppKit_NSTabViewItem = []
AppKit_NSTableCellView = ["AppKit_NSView"]
AppKit_NSTableColumn = []
AppKit_NSTableHeaderCell = ["AppKit_NSTextFieldCell"]
AppKit_NSTableHeaderView = ["AppKit_NSView"]
AppKit_NSTableRowView = ["AppKit_NSView"]
AppKit_NSTableView = ["AppKit_NSControl"]
AppKit_NSTableViewDiffableDataSource = []
AppKit_NSTableViewRowAction = []
AppKit_NSText = ["AppKit_NSView"]
AppKit_NSTextAlternatives = []
AppKit_NSTextAttachment = []
AppKit_NSTextAttachmentCell = ["AppKit_NSCell"]
AppKit_NSTextAttachmentViewProvider = []
AppKit_NSTextBlock = []
AppKit_NSTextCheckingController = []
AppKit_NSTextContainer = []
AppKit_NSTextContentManager = []
AppKit_NSTextContentStorage = ["AppKit_NSTextContentManager"]
AppKit_NSTextElement = []
AppKit_NSTextField = ["AppKit_NSControl"]
AppKit_NSTextFieldCell = ["AppKit_NSActionCell"]
AppKit_NSTextFinder = []
AppKit_NSTextInputContext = []
AppKit_NSTextInsertionIndicator = ["AppKit_NSView"]
AppKit_NSTextLayoutFragment = []
AppKit_NSTextLayoutManager = []
AppKit_NSTextLineFragment = []
AppKit_NSTextList = []
AppKit_NSTextListElement = ["AppKit_NSTextParagraph"]
AppKit_NSTextParagraph = ["AppKit_NSTextElement"]
AppKit_NSTextRange = []
AppKit_NSTextSelection = []
AppKit_NSTextSelectionNavigation = []
AppKit_NSTextStorage = ["Foundation_NSMutableAttributedString"]
AppKit_NSTextTab = []
AppKit_NSTextTable = ["AppKit_NSTextBlock"]
AppKit_NSTextTableBlock = ["AppKit_NSTextBlock"]
AppKit_NSTextView = ["AppKit_NSText"]
AppKit_NSTextViewportLayoutController = []
AppKit_NSTintConfiguration = []
AppKit_NSTitlebarAccessoryViewController = ["AppKit_NSViewController"]
AppKit_NSTokenField = ["AppKit_NSTextField"]
AppKit_NSTokenFieldCell = ["AppKit_NSTextFieldCell"]
AppKit_NSToolbar = []
AppKit_NSToolbarItem = []
AppKit_NSToolbarItemGroup = ["AppKit_NSToolbarItem"]
AppKit_NSTouch = []
AppKit_NSTouchBar = []
AppKit_NSTouchBarItem = []
AppKit_NSTrackingArea = []
AppKit_NSTrackingSeparatorToolbarItem = ["AppKit_NSToolbarItem"]
AppKit_NSTreeController = ["AppKit_NSObjectController"]
AppKit_NSTreeNode = []
AppKit_NSTypesetter = []
AppKit_NSUserDefaultsController = ["AppKit_NSController"]
AppKit_NSUserInterfaceCompressionOptions = []
AppKit_NSView = ["AppKit_NSResponder"]
AppKit_NSViewAnimation = ["AppKit_NSAnimation"]
AppKit_NSViewController = ["AppKit_NSResponder"]
AppKit_NSVisualEffectView = ["AppKit_NSView"]
AppKit_NSWindow = ["AppKit_NSResponder"]
AppKit_NSWindowController = ["AppKit_NSResponder"]
AppKit_NSWindowTab = []
AppKit_NSWindowTabGroup = []
AppKit_NSWorkspace = []
AppKit_NSWorkspaceAuthorization = []
AppKit_NSWorkspaceOpenConfiguration = []
AppKit_all = ["AppKit", "AppKit_NSATSTypesetter", "AppKit_NSAccessibilityCustomAction", "AppKit_NSAccessibilityCustomRotor", "AppKit_NSAccessibilityCustomRotorItemResult", "AppKit_NSAccessibilityCustomRotorSearchParameters", "AppKit_NSAccessibilityElement", "AppKit_NSActionCell", "AppKit_NSAlert", "AppKit_NSAlignmentFeedbackFilter", "AppKit_NSAnimation", "AppKit_NSAnimationContext", "AppKit_NSAppearance", "AppKit_NSApplication", "AppKit_NSArrayController", "AppKit_NSBezierPath", "AppKit_NSBindingSelectionMarker", "AppKit_NSBitmapImageRep", "AppKit_NSBox", "AppKit_NSBrowser", "AppKit_NSBrowserCell", "AppKit_NSButton", "AppKit_NSButtonCell", "AppKit_NSButtonTouchBarItem", "AppKit_NSCachedImageRep", "AppKit_NSCandidateListTouchBarItem", "AppKit_NSCell", "AppKit_NSClickGestureRecognizer", "AppKit_NSClipView", "AppKit_NSCollectionLayoutAnchor", "AppKit_NSCollectionLayoutBoundarySupplementaryItem", "AppKit_NSCollectionLayoutDecorationItem", "AppKit_NSCollectionLayoutDimension", "AppKit_NSCollectionLayoutEdgeSpacing", "AppKit_NSCollectionLayoutGroup", "AppKit_NSCollectionLayoutGroupCustomItem", "AppKit_NSCollectionLayoutItem", "AppKit_NSCollectionLayoutSection", "AppKit_NSCollectionLayoutSize", "AppKit_NSCollectionLayoutSpacing", "AppKit_NSCollectionLayoutSupplementaryItem", "AppKit_NSCollectionView", "AppKit_NSCollectionViewCompositionalLayout", "AppKit_NSCollectionViewCompositionalLayoutConfiguration", "AppKit_NSCollectionViewDiffableDataSource", "AppKit_NSCollectionViewFlowLayout", "AppKit_NSCollectionViewFlowLayoutInvalidationContext", "AppKit_NSCollectionViewGridLayout", "AppKit_NSCollectionViewItem", "AppKit_NSCollectionViewLayout", "AppKit_NSCollectionViewLayoutAttributes", "AppKit_NSCollectionViewLayoutInvalidationContext", "AppKit_NSCollectionViewTransitionLayout", "AppKit_NSCollectionViewUpdateItem", "AppKit_NSColor", "AppKit_NSColorList", "AppKit_NSColorPanel", "AppKit_NSColorPicker", "AppKit_NSColorPickerTouchBarItem", "AppKit_NSColorSampler", "AppKit_NSColorSpace", "AppKit_NSColorWell", "AppKit_NSComboBox", "AppKit_NSComboBoxCell", "AppKit_NSComboButton", "AppKit_NSControl", "AppKit_NSController", "AppKit_NSCursor", "AppKit_NSCustomImageRep", "AppKit_NSCustomTouchBarItem", "AppKit_NSDataAsset", "AppKit_NSDatePicker", "AppKit_NSDatePickerCell", "AppKit_NSDictionaryController", "AppKit_NSDictionaryControllerKeyValuePair", "AppKit_NSDiffableDataSourceSnapshot", "AppKit_NSDockTile", "AppKit_NSDocument", "AppKit_NSDocumentController", "AppKit_NSDraggingImageComponent", "AppKit_NSDraggingItem", "AppKit_NSDraggingSession", "AppKit_NSDrawer", "AppKit_NSEPSImageRep", "AppKit_NSEvent", "AppKit_NSFilePromiseProvider", "AppKit_NSFilePromiseReceiver", "AppKit_NSFont", "AppKit_NSFontAssetRequest", "AppKit_NSFontCollection", "AppKit_NSFontDescriptor", "AppKit_NSFontManager", "AppKit_NSFontPanel", "AppKit_NSForm", "AppKit_NSFormCell", "AppKit_NSGestureRecognizer", "AppKit_NSGlyphGenerator", "AppKit_NSGlyphInfo", "AppKit_NSGradient", "AppKit_NSGraphicsContext", "AppKit_NSGridCell", "AppKit_NSGridColumn", "AppKit_NSGridRow", "AppKit_NSGridView", "AppKit_NSGroupTouchBarItem", "AppKit_NSHapticFeedbackManager", "AppKit_NSHelpManager", "AppKit_NSImage", "AppKit_NSImageCell", "AppKit_NSImageRep", "AppKit_NSImageSymbolConfiguration", "AppKit_NSImageView", "AppKit_NSInputManager", "AppKit_NSInputServer", "AppKit_NSLayoutAnchor", "AppKit_NSLayoutConstraint", "AppKit_NSLayoutDimension", "AppKit_NSLayoutGuide", "AppKit_NSLayoutManager", "AppKit_NSLayoutXAxisAnchor", "AppKit_NSLayoutYAxisAnchor", "AppKit_NSLevelIndicator", "AppKit_NSLevelIndicatorCell", "AppKit_NSMagnificationGestureRecognizer", "AppKit_NSMatrix", "AppKit_NSMediaLibraryBrowserController", "AppKit_NSMenu", "AppKit_NSMenuItem", "AppKit_NSMenuItemBadge", "AppKit_NSMenuItemCell", "AppKit_NSMenuToolbarItem", "AppKit_NSMovie", "AppKit_NSMutableFontCollection", "AppKit_NSMutableParagraphStyle", "AppKit_NSNib", "AppKit_NSObjectController", "AppKit_NSOpenPanel", "AppKit_NSOutlineView", "AppKit_NSPDFImageRep", "AppKit_NSPDFInfo", "AppKit_NSPDFPanel", "AppKit_NSPICTImageRep", "AppKit_NSPageController", "AppKit_NSPageLayout", "AppKit_NSPanGestureRecognizer", "AppKit_NSPanel", "AppKit_NSParagraphStyle", "AppKit_NSPasteboard", "AppKit_NSPasteboardItem", "AppKit_NSPathCell", "AppKit_NSPathComponentCell", "AppKit_NSPathControl", "AppKit_NSPathControlItem", "AppKit_NSPersistentDocument", "AppKit_NSPickerTouchBarItem", "AppKit_NSPopUpButton", "AppKit_NSPopUpButtonCell", "AppKit_NSPopover", "AppKit_NSPopoverTouchBarItem", "AppKit_NSPredicateEditor", "AppKit_NSPredicateEditorRowTemplate", "AppKit_NSPressGestureRecognizer", "AppKit_NSPressureConfiguration", "AppKit_NSPreviewRepresentingActivityItem", "AppKit_NSPrintInfo", "AppKit_NSPrintOperation", "AppKit_NSPrintPanel", "AppKit_NSPrinter", "AppKit_NSProgressIndicator", "AppKit_NSResponder", "AppKit_NSRotationGestureRecognizer", "AppKit_NSRuleEditor", "AppKit_NSRulerMarker", "AppKit_NSRulerView", "AppKit_NSRunningApplication", "AppKit_NSSavePanel", "AppKit_NSScreen", "AppKit_NSScrollView", "AppKit_NSScroller", "AppKit_NSScrubber", "AppKit_NSScrubberArrangedView", "AppKit_NSScrubberFlowLayout", "AppKit_NSScrubberImageItemView", "AppKit_NSScrubberItemView", "AppKit_NSScrubberLayout", "AppKit_NSScrubberLayoutAttributes", "AppKit_NSScrubberProportionalLayout", "AppKit_NSScrubberSelectionStyle", "AppKit_NSScrubberSelectionView", "AppKit_NSScrubberTextItemView", "AppKit_NSSearchField", "AppKit_NSSearchFieldCell", "AppKit_NSSearchToolbarItem", "AppKit_NSSecureTextField", "AppKit_NSSecureTextFieldCell", "AppKit_NSSegmentedCell", "AppKit_NSSegmentedControl", "AppKit_NSShadow", "AppKit_NSSharingService", "AppKit_NSSharingServicePicker", "AppKit_NSSharingServicePickerToolbarItem", "AppKit_NSSharingServicePickerTouchBarItem", "AppKit_NSSlider", "AppKit_NSSliderAccessory", "AppKit_NSSliderAccessoryBehavior", "AppKit_NSSliderCell", "AppKit_NSSliderTouchBarItem", "AppKit_NSSound", "AppKit_NSSpeechRecognizer", "AppKit_NSSpeechSynthesizer", "AppKit_NSSpellChecker", "AppKit_NSSplitView", "AppKit_NSSplitViewController", "AppKit_NSSplitViewItem", "AppKit_NSStackView", "AppKit_NSStatusBar", "AppKit_NSStatusBarButton", "AppKit_NSStatusItem", "AppKit_NSStepper", "AppKit_NSStepperCell", "AppKit_NSStepperTouchBarItem", "AppKit_NSStoryboard", "AppKit_NSStoryboardSegue", "AppKit_NSStringDrawingContext", "AppKit_NSSwitch", "AppKit_NSTabView", "AppKit_NSTabViewController", "AppKit_NSTabViewItem", "AppKit_NSTableCellView", "AppKit_NSTableColumn", "AppKit_NSTableHeaderCell", "AppKit_NSTableHeaderView", "AppKit_NSTableRowView", "AppKit_NSTableView", "AppKit_NSTableViewDiffableDataSource", "AppKit_NSTableViewRowAction", "AppKit_NSText", "AppKit_NSTextAlternatives", "AppKit_NSTextAttachment", "AppKit_NSTextAttachmentCell", "AppKit_NSTextAttachmentViewProvider", "AppKit_NSTextBlock", "AppKit_NSTextCheckingController", "AppKit_NSTextContainer", "AppKit_NSTextContentManager", "AppKit_NSTextContentStorage", "AppKit_NSTextElement", "AppKit_NSTextField", "AppKit_NSTextFieldCell", "AppKit_NSTextFinder", "AppKit_NSTextInputContext", "AppKit_NSTextInsertionIndicator", "AppKit_NSTextLayoutFragment", "AppKit_NSTextLayoutManager", "AppKit_NSTextLineFragment", "AppKit_NSTextList", "AppKit_NSTextListElement", "AppKit_NSTextParagraph", "AppKit_NSTextRange", "AppKit_NSTextSelection", "AppKit_NSTextSelectionNavigation", "AppKit_NSTextStorage", "AppKit_NSTextTab", "AppKit_NSTextTable", "AppKit_NSTextTableBlock", "AppKit_NSTextView", "AppKit_NSTextViewportLayoutController", "AppKit_NSTintConfiguration", "AppKit_NSTitlebarAccessoryViewController", "AppKit_NSTokenField", "AppKit_NSTokenFieldCell", "AppKit_NSToolbar", "AppKit_NSToolbarItem", "AppKit_NSToolbarItemGroup", "AppKit_NSTouch", "AppKit_NSTouchBar", "AppKit_NSTouchBarItem", "AppKit_NSTrackingArea", "AppKit_NSTrackingSeparatorToolbarItem", "AppKit_NSTreeController", "AppKit_NSTreeNode", "AppKit_NSTypesetter", "AppKit_NSUserDefaultsController", "AppKit_NSUserInterfaceCompressionOptions", "AppKit_NSView", "AppKit_NSViewAnimation", "AppKit_NSViewController", "AppKit_NSVisualEffectView", "AppKit_NSWindow", "AppKit_NSWindowController", "AppKit_NSWindowTab", "AppKit_NSWindowTabGroup", "AppKit_NSWorkspace", "AppKit_NSWorkspaceAuthorization", "AppKit_NSWorkspaceOpenConfiguration"]
AuthenticationServices = ["AppKit", "Foundation", "Foundation_NSURL"]
AuthenticationServices_ASAccountAuthenticationModificationController = []
AuthenticationServices_ASAccountAuthenticationModificationExtensionContext = ["Foundation_NSExtensionContext"]
AuthenticationServices_ASAccountAuthenticationModificationReplacePasswordWithSignInWithAppleRequest = ["AuthenticationServices_ASAccountAuthenticationModificationRequest"]
AuthenticationServices_ASAccountAuthenticationModificationRequest = []
AuthenticationServices_ASAccountAuthenticationModificationUpgradePasswordToStrongPasswordRequest = ["AuthenticationServices_ASAccountAuthenticationModificationRequest"]
AuthenticationServices_ASAccountAuthenticationModificationViewController = ["AppKit_NSViewController"]
AuthenticationServices_ASAuthorization = []
AuthenticationServices_ASAuthorizationAppleIDButton = ["AppKit_NSControl"]
AuthenticationServices_ASAuthorizationAppleIDCredential = []
AuthenticationServices_ASAuthorizationAppleIDProvider = []
AuthenticationServices_ASAuthorizationAppleIDRequest = ["AuthenticationServices_ASAuthorizationOpenIDRequest"]
AuthenticationServices_ASAuthorizationController = []
AuthenticationServices_ASAuthorizationOpenIDRequest = ["AuthenticationServices_ASAuthorizationRequest"]
AuthenticationServices_ASAuthorizationPasswordProvider = []
AuthenticationServices_ASAuthorizationPasswordRequest = ["AuthenticationServices_ASAuthorizationRequest"]
AuthenticationServices_ASAuthorizationPlatformPublicKeyCredentialAssertion = []
AuthenticationServices_ASAuthorizationPlatformPublicKeyCredentialAssertionRequest = ["AuthenticationServices_ASAuthorizationRequest"]
AuthenticationServices_ASAuthorizationPlatformPublicKeyCredentialDescriptor = []
AuthenticationServices_ASAuthorizationPlatformPublicKeyCredentialProvider = []
AuthenticationServices_ASAuthorizationPlatformPublicKeyCredentialRegistration = []
AuthenticationServices_ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest = ["AuthenticationServices_ASAuthorizationRequest"]
AuthenticationServices_ASAuthorizationProviderExtensionAuthorizationRequest = []
AuthenticationServices_ASAuthorizationProviderExtensionAuthorizationResult = []
AuthenticationServices_ASAuthorizationProviderExtensionKerberosMapping = []
AuthenticationServices_ASAuthorizationProviderExtensionLoginConfiguration = []
AuthenticationServices_ASAuthorizationProviderExtensionLoginManager = []
AuthenticationServices_ASAuthorizationProviderExtensionUserLoginConfiguration = []
AuthenticationServices_ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput = []
AuthenticationServices_ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput = []
AuthenticationServices_ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput = []
AuthenticationServices_ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput = []
AuthenticationServices_ASAuthorizationPublicKeyCredentialParameters = []
AuthenticationServices_ASAuthorizationRequest = []
AuthenticationServices_ASAuthorizationSecurityKeyPublicKeyCredentialAssertion = []
AuthenticationServices_ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest = ["AuthenticationServices_ASAuthorizationRequest"]
AuthenticationServices_ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor = []
AuthenticationServices_ASAuthorizationSecurityKeyPublicKeyCredentialProvider = []
AuthenticationServices_ASAuthorizationSecurityKeyPublicKeyCredentialRegistration = []
AuthenticationServices_ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest = ["AuthenticationServices_ASAuthorizationRequest"]
AuthenticationServices_ASAuthorizationSingleSignOnCredential = []
AuthenticationServices_ASAuthorizationSingleSignOnProvider = []
AuthenticationServices_ASAuthorizationSingleSignOnRequest = ["AuthenticationServices_ASAuthorizationOpenIDRequest"]
AuthenticationServices_ASAuthorizationWebBrowserPlatformPublicKeyCredential = []
AuthenticationServices_ASAuthorizationWebBrowserPublicKeyCredentialManager = []
AuthenticationServices_ASCredentialIdentityStore = []
AuthenticationServices_ASCredentialIdentityStoreState = []
AuthenticationServices_ASCredentialProviderExtensionContext = ["Foundation_NSExtensionContext"]
AuthenticationServices_ASCredentialProviderViewController = ["AppKit_NSViewController"]
AuthenticationServices_ASCredentialServiceIdentifier = []
AuthenticationServices_ASPasskeyAssertionCredential = []
AuthenticationServices_ASPasskeyCredentialIdentity = []
AuthenticationServices_ASPasskeyCredentialRequest = []
AuthenticationServices_ASPasskeyCredentialRequestParameters = []
AuthenticationServices_ASPasskeyRegistrationCredential = []
AuthenticationServices_ASPasswordCredential = []
AuthenticationServices_ASPasswordCredentialIdentity = []
AuthenticationServices_ASPasswordCredentialRequest = []
AuthenticationServices_ASPublicKeyCredentialClientData = []
AuthenticationServices_ASSettingsHelper = []
AuthenticationServices_ASWebAuthenticationSession = []
AuthenticationServices_ASWebAuthenticationSessionRequest = []
AuthenticationServices_ASWebAuthenticationSessionWebBrowserSessionManager = []
AuthenticationServices_all = ["AuthenticationServices", "AuthenticationServices_ASAccountAuthenticationModificationController", "AuthenticationServices_ASAccountAuthenticationModificationExtensionContext", "AuthenticationServices_ASAccountAuthenticationModificationReplacePasswordWithSignInWithAppleRequest", "AuthenticationServices_ASAccountAuthenticationModificationRequest", "AuthenticationServices_ASAccountAuthenticationModificationUpgradePasswordToStrongPasswordRequest", "AuthenticationServices_ASAccountAuthenticationModificationViewController", "AuthenticationServices_ASAuthorization", "AuthenticationServices_ASAuthorizationAppleIDButton", "AuthenticationServices_ASAuthorizationAppleIDCredential", "AuthenticationServices_ASAuthorizationAppleIDProvider", "AuthenticationServices_ASAuthorizationAppleIDRequest", "AuthenticationServices_ASAuthorizationController", "AuthenticationServices_ASAuthorizationOpenIDRequest", "AuthenticationServices_ASAuthorizationPasswordProvider", "AuthenticationServices_ASAuthorizationPasswordRequest", "AuthenticationServices_ASAuthorizationPlatformPublicKeyCredentialAssertion", "AuthenticationServices_ASAuthorizationPlatformPublicKeyCredentialAssertionRequest", "AuthenticationServices_ASAuthorizationPlatformPublicKeyCredentialDescriptor", "AuthenticationServices_ASAuthorizationPlatformPublicKeyCredentialProvider", "AuthenticationServices_ASAuthorizationPlatformPublicKeyCredentialRegistration", "AuthenticationServices_ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest", "AuthenticationServices_ASAuthorizationProviderExtensionAuthorizationRequest", "AuthenticationServices_ASAuthorizationProviderExtensionAuthorizationResult", "AuthenticationServices_ASAuthorizationProviderExtensionKerberosMapping", "AuthenticationServices_ASAuthorizationProviderExtensionLoginConfiguration", "AuthenticationServices_ASAuthorizationProviderExtensionLoginManager", "AuthenticationServices_ASAuthorizationProviderExtensionUserLoginConfiguration", "AuthenticationServices_ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput", "AuthenticationServices_ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput", "AuthenticationServices_ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput", "AuthenticationServices_ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput", "AuthenticationServices_ASAuthorizationPublicKeyCredentialParameters", "AuthenticationServices_ASAuthorizationRequest", "AuthenticationServices_ASAuthorizationSecurityKeyPublicKeyCredentialAssertion", "AuthenticationServices_ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest", "AuthenticationServices_ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor", "AuthenticationServices_ASAuthorizationSecurityKeyPublicKeyCredentialProvider", "AuthenticationServices_ASAuthorizationSecurityKeyPublicKeyCredentialRegistration", "AuthenticationServices_ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest", "AuthenticationServices_ASAuthorizationSingleSignOnCredential", "AuthenticationServices_ASAuthorizationSingleSignOnProvider", "AuthenticationServices_ASAuthorizationSingleSignOnRequest", "AuthenticationServices_ASAuthorizationWebBrowserPlatformPublicKeyCredential", "AuthenticationServices_ASAuthorizationWebBrowserPublicKeyCredentialManager", "AuthenticationServices_ASCredentialIdentityStore", "AuthenticationServices_ASCredentialIdentityStoreState", "AuthenticationServices_ASCredentialProviderExtensionContext", "AuthenticationServices_ASCredentialProviderViewController", "AuthenticationServices_ASCredentialServiceIdentifier", "AuthenticationServices_ASPasskeyAssertionCredential", "AuthenticationServices_ASPasskeyCredentialIdentity", "AuthenticationServices_ASPasskeyCredentialRequest", "AuthenticationServices_ASPasskeyCredentialRequestParameters", "AuthenticationServices_ASPasskeyRegistrationCredential", "AuthenticationServices_ASPasswordCredential", "AuthenticationServices_ASPasswordCredentialIdentity", "AuthenticationServices_ASPasswordCredentialRequest", "AuthenticationServices_ASPublicKeyCredentialClientData", "AuthenticationServices_ASSettingsHelper", "AuthenticationServices_ASWebAuthenticationSession", "AuthenticationServices_ASWebAuthenticationSessionRequest", "AuthenticationServices_ASWebAuthenticationSessionWebBrowserSessionManager"]
AutomaticAssessmentConfiguration = ["Foundation"]
AutomaticAssessmentConfiguration_AEAssessmentApplication = []
AutomaticAssessmentConfiguration_AEAssessmentConfiguration = []
AutomaticAssessmentConfiguration_AEAssessmentParticipantConfiguration = []
AutomaticAssessmentConfiguration_AEAssessmentSession = []
AutomaticAssessmentConfiguration_all = ["AutomaticAssessmentConfiguration", "AutomaticAssessmentConfiguration_AEAssessmentApplication", "AutomaticAssessmentConfiguration_AEAssessmentConfiguration", "AutomaticAssessmentConfiguration_AEAssessmentParticipantConfiguration", "AutomaticAssessmentConfiguration_AEAssessmentSession"]
Automator = ["AppKit", "Foundation", "OSAKit"]
Automator_AMAction = []
Automator_AMAppleScriptAction = ["Automator_AMBundleAction"]
Automator_AMBundleAction = ["Automator_AMAction"]
Automator_AMShellScriptAction = ["Automator_AMBundleAction"]
Automator_AMWorkflow = []
Automator_AMWorkflowController = ["AppKit_NSController"]
Automator_AMWorkflowView = ["AppKit_NSView"]
Automator_AMWorkspace = []
Automator_all = ["Automator", "Automator_AMAction", "Automator_AMAppleScriptAction", "Automator_AMBundleAction", "Automator_AMShellScriptAction", "Automator_AMWorkflow", "Automator_AMWorkflowController", "Automator_AMWorkflowView", "Automator_AMWorkspace"]
BackgroundAssets = ["Foundation"]
BackgroundAssets_BAAppExtensionInfo = []
BackgroundAssets_BADownload = []
BackgroundAssets_BADownloadManager = []
BackgroundAssets_BAURLDownload = ["BackgroundAssets_BADownload"]
BackgroundAssets_all = ["BackgroundAssets", "BackgroundAssets_BAAppExtensionInfo", "BackgroundAssets_BADownload", "BackgroundAssets_BADownloadManager", "BackgroundAssets_BAURLDownload"]
BackgroundTasks = ["Foundation"]
BackgroundTasks_BGAppRefreshTask = ["BackgroundTasks_BGTask"]
BackgroundTasks_BGAppRefreshTaskRequest = ["BackgroundTasks_BGTaskRequest"]
BackgroundTasks_BGHealthResearchTask = ["BackgroundTasks_BGProcessingTask"]
BackgroundTasks_BGHealthResearchTaskRequest = ["BackgroundTasks_BGProcessingTaskRequest"]
BackgroundTasks_BGProcessingTask = ["BackgroundTasks_BGTask"]
BackgroundTasks_BGProcessingTaskRequest = ["BackgroundTasks_BGTaskRequest"]
BackgroundTasks_BGTask = []
BackgroundTasks_BGTaskRequest = []
BackgroundTasks_BGTaskScheduler = []
BackgroundTasks_all = ["BackgroundTasks", "BackgroundTasks_BGAppRefreshTask", "BackgroundTasks_BGAppRefreshTaskRequest", "BackgroundTasks_BGHealthResearchTask", "BackgroundTasks_BGHealthResearchTaskRequest", "BackgroundTasks_BGProcessingTask", "BackgroundTasks_BGProcessingTaskRequest", "BackgroundTasks_BGTask", "BackgroundTasks_BGTaskRequest", "BackgroundTasks_BGTaskScheduler"]
BusinessChat = ["AppKit", "Foundation"]
BusinessChat_BCChatAction = []
BusinessChat_BCChatButton = ["AppKit_NSControl"]
BusinessChat_all = ["BusinessChat", "BusinessChat_BCChatAction", "BusinessChat_BCChatButton"]
CallKit = ["Foundation"]
CallKit_CXAction = []
CallKit_CXAnswerCallAction = ["CallKit_CXCallAction"]
CallKit_CXCall = []
CallKit_CXCallAction = ["CallKit_CXAction"]
CallKit_CXCallController = []
CallKit_CXCallDirectoryExtensionContext = ["Foundation_NSExtensionContext"]
CallKit_CXCallDirectoryManager = []
CallKit_CXCallDirectoryProvider = []
CallKit_CXCallObserver = []
CallKit_CXCallUpdate = []
CallKit_CXEndCallAction = ["CallKit_CXCallAction"]
CallKit_CXHandle = []
CallKit_CXPlayDTMFCallAction = ["CallKit_CXCallAction"]
CallKit_CXProvider = []
CallKit_CXProviderConfiguration = []
CallKit_CXSetGroupCallAction = ["CallKit_CXCallAction"]
CallKit_CXSetHeldCallAction = ["CallKit_CXCallAction"]
CallKit_CXSetMutedCallAction = ["CallKit_CXCallAction"]
CallKit_CXStartCallAction = ["CallKit_CXCallAction"]
CallKit_CXTransaction = []
CallKit_all = ["CallKit", "CallKit_CXAction", "CallKit_CXAnswerCallAction", "CallKit_CXCall", "CallKit_CXCallAction", "CallKit_CXCallController", "CallKit_CXCallDirectoryExtensionContext", "CallKit_CXCallDirectoryManager", "CallKit_CXCallDirectoryProvider", "CallKit_CXCallObserver", "CallKit_CXCallUpdate", "CallKit_CXEndCallAction", "CallKit_CXHandle", "CallKit_CXPlayDTMFCallAction", "CallKit_CXProvider", "CallKit_CXProviderConfiguration", "CallKit_CXSetGroupCallAction", "CallKit_CXSetHeldCallAction", "CallKit_CXSetMutedCallAction", "CallKit_CXStartCallAction", "CallKit_CXTransaction"]
ClassKit = ["Foundation"]
ClassKit_CLSActivity = ["ClassKit_CLSObject"]
ClassKit_CLSActivityItem = ["ClassKit_CLSObject"]
ClassKit_CLSBinaryItem = ["ClassKit_CLSActivityItem"]
ClassKit_CLSContext = ["ClassKit_CLSObject"]
ClassKit_CLSDataStore = []
ClassKit_CLSObject = []
ClassKit_CLSProgressReportingCapability = ["ClassKit_CLSObject"]
ClassKit_CLSQuantityItem = ["ClassKit_CLSActivityItem"]
ClassKit_CLSScoreItem = ["ClassKit_CLSActivityItem"]
ClassKit_all = ["ClassKit", "ClassKit_CLSActivity", "ClassKit_CLSActivityItem", "ClassKit_CLSBinaryItem", "ClassKit_CLSContext", "ClassKit_CLSDataStore", "ClassKit_CLSObject", "ClassKit_CLSProgressReportingCapability", "ClassKit_CLSQuantityItem", "ClassKit_CLSScoreItem"]
CloudKit = ["CoreLocation", "Foundation", "CloudKit_CKShare"]
CloudKit_CKAcceptSharesOperation = ["CloudKit_CKOperation"]
CloudKit_CKAllowedSharingOptions = []
CloudKit_CKAsset = []
CloudKit_CKContainer = []
CloudKit_CKDatabase = []
CloudKit_CKDatabaseNotification = ["CloudKit_CKNotification"]
CloudKit_CKDatabaseOperation = ["CloudKit_CKOperation"]
CloudKit_CKDatabaseSubscription = ["CloudKit_CKSubscription"]
CloudKit_CKDiscoverAllUserIdentitiesOperation = ["CloudKit_CKOperation"]
CloudKit_CKDiscoverUserIdentitiesOperation = ["CloudKit_CKOperation"]
CloudKit_CKFetchDatabaseChangesOperation = ["CloudKit_CKDatabaseOperation"]
CloudKit_CKFetchNotificationChangesOperation = ["CloudKit_CKOperation"]
CloudKit_CKFetchRecordChangesOperation = ["CloudKit_CKDatabaseOperation"]
CloudKit_CKFetchRecordZoneChangesConfiguration = []
CloudKit_CKFetchRecordZoneChangesOperation = ["CloudKit_CKDatabaseOperation"]
CloudKit_CKFetchRecordZoneChangesOptions = []
CloudKit_CKFetchRecordZonesOperation = ["CloudKit_CKDatabaseOperation"]
CloudKit_CKFetchRecordsOperation = ["CloudKit_CKDatabaseOperation"]
CloudKit_CKFetchShareMetadataOperation = ["CloudKit_CKOperation"]
CloudKit_CKFetchShareParticipantsOperation = ["CloudKit_CKOperation"]
CloudKit_CKFetchSubscriptionsOperation = ["CloudKit_CKDatabaseOperation"]
CloudKit_CKFetchWebAuthTokenOperation = ["CloudKit_CKDatabaseOperation"]
CloudKit_CKLocationSortDescriptor = ["Foundation_NSSortDescriptor"]
CloudKit_CKMarkNotificationsReadOperation = ["CloudKit_CKOperation"]
CloudKit_CKModifyBadgeOperation = ["CloudKit_CKOperation"]
CloudKit_CKModifyRecordZonesOperation = ["CloudKit_CKDatabaseOperation"]
CloudKit_CKModifyRecordsOperation = ["CloudKit_CKDatabaseOperation"]
CloudKit_CKModifySubscriptionsOperation = ["CloudKit_CKDatabaseOperation"]
CloudKit_CKNotification = []
CloudKit_CKNotificationID = []
CloudKit_CKNotificationInfo = []
CloudKit_CKOperation = ["Foundation_NSOperation"]
CloudKit_CKOperationConfiguration = []
CloudKit_CKOperationGroup = []
CloudKit_CKQuery = []
CloudKit_CKQueryCursor = []
CloudKit_CKQueryNotification = ["CloudKit_CKNotification"]
CloudKit_CKQueryOperation = ["CloudKit_CKDatabaseOperation"]
CloudKit_CKQuerySubscription = ["CloudKit_CKSubscription"]
CloudKit_CKRecord = []
CloudKit_CKRecordID = []
CloudKit_CKRecordZone = []
CloudKit_CKRecordZoneID = []
CloudKit_CKRecordZoneNotification = ["CloudKit_CKNotification"]
CloudKit_CKRecordZoneSubscription = ["CloudKit_CKSubscription"]
CloudKit_CKReference = []
CloudKit_CKServerChangeToken = []
CloudKit_CKShare = ["CloudKit_CKRecord"]
CloudKit_CKShareMetadata = []
CloudKit_CKShareParticipant = []
CloudKit_CKSubscription = []
CloudKit_CKSyncEngine = []
CloudKit_CKSyncEngineAccountChangeEvent = ["CloudKit_CKSyncEngineEvent"]
CloudKit_CKSyncEngineConfiguration = []
CloudKit_CKSyncEngineDidFetchChangesEvent = ["CloudKit_CKSyncEngineEvent"]
CloudKit_CKSyncEngineDidFetchRecordZoneChangesEvent = ["CloudKit_CKSyncEngineEvent"]
CloudKit_CKSyncEngineDidSendChangesEvent = ["CloudKit_CKSyncEngineEvent"]
CloudKit_CKSyncEngineEvent = []
CloudKit_CKSyncEngineFailedRecordSave = []
CloudKit_CKSyncEngineFailedZoneSave = []
CloudKit_CKSyncEngineFetchChangesContext = []
CloudKit_CKSyncEngineFetchChangesOptions = []
CloudKit_CKSyncEngineFetchChangesScope = []
CloudKit_CKSyncEngineFetchedDatabaseChangesEvent = ["CloudKit_CKSyncEngineEvent"]
CloudKit_CKSyncEngineFetchedRecordDeletion = []
CloudKit_CKSyncEngineFetchedRecordZoneChangesEvent = ["CloudKit_CKSyncEngineEvent"]
CloudKit_CKSyncEngineFetchedZoneDeletion = []
CloudKit_CKSyncEnginePendingDatabaseChange = []
CloudKit_CKSyncEnginePendingRecordZoneChange = []
CloudKit_CKSyncEnginePendingZoneDelete = ["CloudKit_CKSyncEnginePendingDatabaseChange"]
CloudKit_CKSyncEnginePendingZoneSave = ["CloudKit_CKSyncEnginePendingDatabaseChange"]
CloudKit_CKSyncEngineRecordZoneChangeBatch = []
CloudKit_CKSyncEngineSendChangesContext = []
CloudKit_CKSyncEngineSendChangesOptions = []
CloudKit_CKSyncEngineSendChangesScope = []
CloudKit_CKSyncEngineSentDatabaseChangesEvent = ["CloudKit_CKSyncEngineEvent"]
CloudKit_CKSyncEngineSentRecordZoneChangesEvent = ["CloudKit_CKSyncEngineEvent"]
CloudKit_CKSyncEngineState = []
CloudKit_CKSyncEngineStateSerialization = []
CloudKit_CKSyncEngineStateUpdateEvent = ["CloudKit_CKSyncEngineEvent"]
CloudKit_CKSyncEngineWillFetchChangesEvent = ["CloudKit_CKSyncEngineEvent"]
CloudKit_CKSyncEngineWillFetchRecordZoneChangesEvent = ["CloudKit_CKSyncEngineEvent"]
CloudKit_CKSyncEngineWillSendChangesEvent = ["CloudKit_CKSyncEngineEvent"]
CloudKit_CKSystemSharingUIObserver = []
CloudKit_CKUserIdentity = []
CloudKit_CKUserIdentityLookupInfo = []
CloudKit_all = ["CloudKit", "CloudKit_CKAcceptSharesOperation", "CloudKit_CKAllowedSharingOptions", "CloudKit_CKAsset", "CloudKit_CKContainer", "CloudKit_CKDatabase", "CloudKit_CKDatabaseNotification", "CloudKit_CKDatabaseOperation", "CloudKit_CKDatabaseSubscription", "CloudKit_CKDiscoverAllUserIdentitiesOperation", "CloudKit_CKDiscoverUserIdentitiesOperation", "CloudKit_CKFetchDatabaseChangesOperation", "CloudKit_CKFetchNotificationChangesOperation", "CloudKit_CKFetchRecordChangesOperation", "CloudKit_CKFetchRecordZoneChangesConfiguration", "CloudKit_CKFetchRecordZoneChangesOperation", "CloudKit_CKFetchRecordZoneChangesOptions", "CloudKit_CKFetchRecordZonesOperation", "CloudKit_CKFetchRecordsOperation", "CloudKit_CKFetchShareMetadataOperation", "CloudKit_CKFetchShareParticipantsOperation", "CloudKit_CKFetchSubscriptionsOperation", "CloudKit_CKFetchWebAuthTokenOperation", "CloudKit_CKLocationSortDescriptor", "CloudKit_CKMarkNotificationsReadOperation", "CloudKit_CKModifyBadgeOperation", "CloudKit_CKModifyRecordZonesOperation", "CloudKit_CKModifyRecordsOperation", "CloudKit_CKModifySubscriptionsOperation", "CloudKit_CKNotification", "CloudKit_CKNotificationID", "CloudKit_CKNotificationInfo", "CloudKit_CKOperation", "CloudKit_CKOperationConfiguration", "CloudKit_CKOperationGroup", "CloudKit_CKQuery", "CloudKit_CKQueryCursor", "CloudKit_CKQueryNotification", "CloudKit_CKQueryOperation", "CloudKit_CKQuerySubscription", "CloudKit_CKRecord", "CloudKit_CKRecordID", "CloudKit_CKRecordZone", "CloudKit_CKRecordZoneID", "CloudKit_CKRecordZoneNotification", "CloudKit_CKRecordZoneSubscription", "CloudKit_CKReference", "CloudKit_CKServerChangeToken", "CloudKit_CKShare", "CloudKit_CKShareMetadata", "CloudKit_CKShareParticipant", "CloudKit_CKSubscription", "CloudKit_CKSyncEngine", "CloudKit_CKSyncEngineAccountChangeEvent", "CloudKit_CKSyncEngineConfiguration", "CloudKit_CKSyncEngineDidFetchChangesEvent", "CloudKit_CKSyncEngineDidFetchRecordZoneChangesEvent", "CloudKit_CKSyncEngineDidSendChangesEvent", "CloudKit_CKSyncEngineEvent", "CloudKit_CKSyncEngineFailedRecordSave", "CloudKit_CKSyncEngineFailedZoneSave", "CloudKit_CKSyncEngineFetchChangesContext", "CloudKit_CKSyncEngineFetchChangesOptions", "CloudKit_CKSyncEngineFetchChangesScope", "CloudKit_CKSyncEngineFetchedDatabaseChangesEvent", "CloudKit_CKSyncEngineFetchedRecordDeletion", "CloudKit_CKSyncEngineFetchedRecordZoneChangesEvent", "CloudKit_CKSyncEngineFetchedZoneDeletion", "CloudKit_CKSyncEnginePendingDatabaseChange", "CloudKit_CKSyncEnginePendingRecordZoneChange", "CloudKit_CKSyncEnginePendingZoneDelete", "CloudKit_CKSyncEnginePendingZoneSave", "CloudKit_CKSyncEngineRecordZoneChangeBatch", "CloudKit_CKSyncEngineSendChangesContext", "CloudKit_CKSyncEngineSendChangesOptions", "CloudKit_CKSyncEngineSendChangesScope", "CloudKit_CKSyncEngineSentDatabaseChangesEvent", "CloudKit_CKSyncEngineSentRecordZoneChangesEvent", "CloudKit_CKSyncEngineState", "CloudKit_CKSyncEngineStateSerialization", "CloudKit_CKSyncEngineStateUpdateEvent", "CloudKit_CKSyncEngineWillFetchChangesEvent", "CloudKit_CKSyncEngineWillFetchRecordZoneChangesEvent", "CloudKit_CKSyncEngineWillSendChangesEvent", "CloudKit_CKSystemSharingUIObserver", "CloudKit_CKUserIdentity", "CloudKit_CKUserIdentityLookupInfo"]
Contacts = ["Foundation"]
Contacts_CNChangeHistoryAddContactEvent = ["Contacts_CNChangeHistoryEvent"]
Contacts_CNChangeHistoryAddGroupEvent = ["Contacts_CNChangeHistoryEvent"]
Contacts_CNChangeHistoryAddMemberToGroupEvent = ["Contacts_CNChangeHistoryEvent"]
Contacts_CNChangeHistoryAddSubgroupToGroupEvent = ["Contacts_CNChangeHistoryEvent"]
Contacts_CNChangeHistoryDeleteContactEvent = ["Contacts_CNChangeHistoryEvent"]
Contacts_CNChangeHistoryDeleteGroupEvent = ["Contacts_CNChangeHistoryEvent"]
Contacts_CNChangeHistoryDropEverythingEvent = ["Contacts_CNChangeHistoryEvent"]
Contacts_CNChangeHistoryEvent = []
Contacts_CNChangeHistoryFetchRequest = ["Contacts_CNFetchRequest"]
Contacts_CNChangeHistoryRemoveMemberFromGroupEvent = ["Contacts_CNChangeHistoryEvent"]
Contacts_CNChangeHistoryRemoveSubgroupFromGroupEvent = ["Contacts_CNChangeHistoryEvent"]
Contacts_CNChangeHistoryUpdateContactEvent = ["Contacts_CNChangeHistoryEvent"]
Contacts_CNChangeHistoryUpdateGroupEvent = ["Contacts_CNChangeHistoryEvent"]
Contacts_CNContact = []
Contacts_CNContactFetchRequest = ["Contacts_CNFetchRequest"]
Contacts_CNContactFormatter = ["Foundation_NSFormatter"]
Contacts_CNContactProperty = []
Contacts_CNContactRelation = []
Contacts_CNContactStore = []
Contacts_CNContactVCardSerialization = []
Contacts_CNContactsUserDefaults = []
Contacts_CNContainer = []
Contacts_CNFetchRequest = []
Contacts_CNFetchResult = []
Contacts_CNGroup = []
Contacts_CNInstantMessageAddress = []
Contacts_CNLabeledValue = []
Contacts_CNMutableContact = ["Contacts_CNContact"]
Contacts_CNMutableGroup = ["Contacts_CNGroup"]
Contacts_CNMutablePostalAddress = ["Contacts_CNPostalAddress"]
Contacts_CNPhoneNumber = []
Contacts_CNPostalAddress = []
Contacts_CNPostalAddressFormatter = ["Foundation_NSFormatter"]
Contacts_CNSaveRequest = []
Contacts_CNSocialProfile = []
Contacts_all = ["Contacts", "Contacts_CNChangeHistoryAddContactEvent", "Contacts_CNChangeHistoryAddGroupEvent", "Contacts_CNChangeHistoryAddMemberToGroupEvent", "Contacts_CNChangeHistoryAddSubgroupToGroupEvent", "Contacts_CNChangeHistoryDeleteContactEvent", "Contacts_CNChangeHistoryDeleteGroupEvent", "Contacts_CNChangeHistoryDropEverythingEvent", "Contacts_CNChangeHistoryEvent", "Contacts_CNChangeHistoryFetchRequest", "Contacts_CNChangeHistoryRemoveMemberFromGroupEvent", "Contacts_CNChangeHistoryRemoveSubgroupFromGroupEvent", "Contacts_CNChangeHistoryUpdateContactEvent", "Contacts_CNChangeHistoryUpdateGroupEvent", "Contacts_CNContact", "Contacts_CNContactFetchRequest", "Contacts_CNContactFormatter", "Contacts_CNContactProperty", "Contacts_CNContactRelation", "Contacts_CNContactStore", "Contacts_CNContactVCardSerialization", "Contacts_CNContactsUserDefaults", "Contacts_CNContainer", "Contacts_CNFetchRequest", "Contacts_CNFetchResult", "Contacts_CNGroup", "Contacts_CNInstantMessageAddress", "Contacts_CNLabeledValue", "Contacts_CNMutableContact", "Contacts_CNMutableGroup", "Contacts_CNMutablePostalAddress", "Contacts_CNPhoneNumber", "Contacts_CNPostalAddress", "Contacts_CNPostalAddressFormatter", "Contacts_CNSaveRequest", "Contacts_CNSocialProfile"]
CoreAnimation = ["Foundation"]
CoreAnimation_CAAnimation = []
CoreAnimation_CAAnimationGroup = ["CoreAnimation_CAAnimation"]
CoreAnimation_CABasicAnimation = ["CoreAnimation_CAPropertyAnimation"]
CoreAnimation_CAConstraint = []
CoreAnimation_CAConstraintLayoutManager = []
CoreAnimation_CADisplayLink = []
CoreAnimation_CAEDRMetadata = []
CoreAnimation_CAEmitterCell = []
CoreAnimation_CAEmitterLayer = ["CoreAnimation_CALayer"]
CoreAnimation_CAGradientLayer = ["CoreAnimation_CALayer"]
CoreAnimation_CAKeyframeAnimation = ["CoreAnimation_CAPropertyAnimation"]
CoreAnimation_CALayer = []
CoreAnimation_CAMediaTimingFunction = []
CoreAnimation_CAMetalDisplayLink = []
CoreAnimation_CAMetalDisplayLinkUpdate = []
CoreAnimation_CAPropertyAnimation = ["CoreAnimation_CAAnimation"]
CoreAnimation_CARemoteLayerClient = []
CoreAnimation_CARemoteLayerServer = []
CoreAnimation_CARenderer = []
CoreAnimation_CAReplicatorLayer = ["CoreAnimation_CALayer"]
CoreAnimation_CAScrollLayer = ["CoreAnimation_CALayer"]
CoreAnimation_CAShapeLayer = ["CoreAnimation_CALayer"]
CoreAnimation_CASpringAnimation = ["CoreAnimation_CABasicAnimation"]
CoreAnimation_CATextLayer = ["CoreAnimation_CALayer"]
CoreAnimation_CATiledLayer = ["CoreAnimation_CALayer"]
CoreAnimation_CATransaction = []
CoreAnimation_CATransformLayer = ["CoreAnimation_CALayer"]
CoreAnimation_CATransition = ["CoreAnimation_CAAnimation"]
CoreAnimation_CAValueFunction = []
CoreAnimation_all = ["CoreAnimation", "CoreAnimation_CAAnimation", "CoreAnimation_CAAnimationGroup", "CoreAnimation_CABasicAnimation", "CoreAnimation_CAConstraint", "CoreAnimation_CAConstraintLayoutManager", "CoreAnimation_CADisplayLink", "CoreAnimation_CAEDRMetadata", "CoreAnimation_CAEmitterCell", "CoreAnimation_CAEmitterLayer", "CoreAnimation_CAGradientLayer", "CoreAnimation_CAKeyframeAnimation", "CoreAnimation_CALayer", "CoreAnimation_CAMediaTimingFunction", "CoreAnimation_CAMetalDisplayLink", "CoreAnimation_CAMetalDisplayLinkUpdate", "CoreAnimation_CAPropertyAnimation", "CoreAnimation_CARemoteLayerClient", "CoreAnimation_CARemoteLayerServer", "CoreAnimation_CARenderer", "CoreAnimation_CAReplicatorLayer", "CoreAnimation_CAScrollLayer", "CoreAnimation_CAShapeLayer", "CoreAnimation_CASpringAnimation", "CoreAnimation_CATextLayer", "CoreAnimation_CATiledLayer", "CoreAnimation_CATransaction", "CoreAnimation_CATransformLayer", "CoreAnimation_CATransition", "CoreAnimation_CAValueFunction"]
CoreData = ["Foundation", "CoreData_NSAsynchronousFetchResult"]
CoreData_NSAsynchronousFetchRequest = ["CoreData_NSPersistentStoreRequest"]
CoreData_NSAsynchronousFetchResult = ["CoreData_NSPersistentStoreAsynchronousResult"]
CoreData_NSAtomicStore = ["CoreData_NSPersistentStore"]
CoreData_NSAtomicStoreCacheNode = []
CoreData_NSAttributeDescription = ["CoreData_NSPropertyDescription"]
CoreData_NSBatchDeleteRequest = ["CoreData_NSPersistentStoreRequest"]
CoreData_NSBatchDeleteResult = ["CoreData_NSPersistentStoreResult"]
CoreData_NSBatchInsertRequest = ["CoreData_NSPersistentStoreRequest"]
CoreData_NSBatchInsertResult = ["CoreData_NSPersistentStoreResult"]
CoreData_NSBatchUpdateRequest = ["CoreData_NSPersistentStoreRequest"]
CoreData_NSBatchUpdateResult = ["CoreData_NSPersistentStoreResult"]
CoreData_NSCompositeAttributeDescription = ["CoreData_NSAttributeDescription"]
CoreData_NSConstraintConflict = []
CoreData_NSCoreDataCoreSpotlightDelegate = []
CoreData_NSCustomMigrationStage = ["CoreData_NSMigrationStage"]
CoreData_NSDerivedAttributeDescription = ["CoreData_NSAttributeDescription"]
CoreData_NSEntityDescription = []
CoreData_NSEntityMapping = []
CoreData_NSEntityMigrationPolicy = []
CoreData_NSExpressionDescription = ["CoreData_NSPropertyDescription"]
CoreData_NSFetchIndexDescription = []
CoreData_NSFetchIndexElementDescription = []
CoreData_NSFetchRequest = ["CoreData_NSPersistentStoreRequest"]
CoreData_NSFetchRequestExpression = ["Foundation_NSExpression"]
CoreData_NSFetchedPropertyDescription = ["CoreData_NSPropertyDescription"]
CoreData_NSFetchedResultsController = []
CoreData_NSIncrementalStore = ["CoreData_NSPersistentStore"]
CoreData_NSIncrementalStoreNode = []
CoreData_NSLightweightMigrationStage = ["CoreData_NSMigrationStage"]
CoreData_NSManagedObject = []
CoreData_NSManagedObjectContext = []
CoreData_NSManagedObjectID = []
CoreData_NSManagedObjectModel = []
CoreData_NSManagedObjectModelReference = []
CoreData_NSMappingModel = []
CoreData_NSMergeConflict = []
CoreData_NSMergePolicy = []
CoreData_NSMigrationManager = []
CoreData_NSMigrationStage = []
CoreData_NSPersistentCloudKitContainer = ["CoreData_NSPersistentContainer"]
CoreData_NSPersistentCloudKitContainerEvent = []
CoreData_NSPersistentCloudKitContainerEventRequest = ["CoreData_NSPersistentStoreRequest"]
CoreData_NSPersistentCloudKitContainerEventResult = ["CoreData_NSPersistentStoreResult"]
CoreData_NSPersistentCloudKitContainerOptions = []
CoreData_NSPersistentContainer = []
CoreData_NSPersistentHistoryChange = []
CoreData_NSPersistentHistoryChangeRequest = ["CoreData_NSPersistentStoreRequest"]
CoreData_NSPersistentHistoryResult = ["CoreData_NSPersistentStoreResult"]
CoreData_NSPersistentHistoryToken = []
CoreData_NSPersistentHistoryTransaction = []
CoreData_NSPersistentStore = []
CoreData_NSPersistentStoreAsynchronousResult = ["CoreData_NSPersistentStoreResult"]
CoreData_NSPersistentStoreCoordinator = []
CoreData_NSPersistentStoreDescription = []
CoreData_NSPersistentStoreRequest = []
CoreData_NSPersistentStoreResult = []
CoreData_NSPropertyDescription = []
CoreData_NSPropertyMapping = []
CoreData_NSQueryGenerationToken = []
CoreData_NSRelationshipDescription = ["CoreData_NSPropertyDescription"]
CoreData_NSSaveChangesRequest = ["CoreData_NSPersistentStoreRequest"]
CoreData_NSStagedMigrationManager = []
CoreData_all = ["CoreData", "CoreData_NSAsynchronousFetchRequest", "CoreData_NSAsynchronousFetchResult", "CoreData_NSAtomicStore", "CoreData_NSAtomicStoreCacheNode", "CoreData_NSAttributeDescription", "CoreData_NSBatchDeleteRequest", "CoreData_NSBatchDeleteResult", "CoreData_NSBatchInsertRequest", "CoreData_NSBatchInsertResult", "CoreData_NSBatchUpdateRequest", "CoreData_NSBatchUpdateResult", "CoreData_NSCompositeAttributeDescription", "CoreData_NSConstraintConflict", "CoreData_NSCoreDataCoreSpotlightDelegate", "CoreData_NSCustomMigrationStage", "CoreData_NSDerivedAttributeDescription", "CoreData_NSEntityDescription", "CoreData_NSEntityMapping", "CoreData_NSEntityMigrationPolicy", "CoreData_NSExpressionDescription", "CoreData_NSFetchIndexDescription", "CoreData_NSFetchIndexElementDescription", "CoreData_NSFetchRequest", "CoreData_NSFetchRequestExpression", "CoreData_NSFetchedPropertyDescription", "CoreData_NSFetchedResultsController", "CoreData_NSIncrementalStore", "CoreData_NSIncrementalStoreNode", "CoreData_NSLightweightMigrationStage", "CoreData_NSManagedObject", "CoreData_NSManagedObjectContext", "CoreData_NSManagedObjectID", "CoreData_NSManagedObjectModel", "CoreData_NSManagedObjectModelReference", "CoreData_NSMappingModel", "CoreData_NSMergeConflict", "CoreData_NSMergePolicy", "CoreData_NSMigrationManager", "CoreData_NSMigrationStage", "CoreData_NSPersistentCloudKitContainer", "CoreData_NSPersistentCloudKitContainerEvent", "CoreData_NSPersistentCloudKitContainerEventRequest", "CoreData_NSPersistentCloudKitContainerEventResult", "CoreData_NSPersistentCloudKitContainerOptions", "CoreData_NSPersistentContainer", "CoreData_NSPersistentHistoryChange", "CoreData_NSPersistentHistoryChangeRequest", "CoreData_NSPersistentHistoryResult", "CoreData_NSPersistentHistoryToken", "CoreData_NSPersistentHistoryTransaction", "CoreData_NSPersistentStore", "CoreData_NSPersistentStoreAsynchronousResult", "CoreData_NSPersistentStoreCoordinator", "CoreData_NSPersistentStoreDescription", "CoreData_NSPersistentStoreRequest", "CoreData_NSPersistentStoreResult", "CoreData_NSPropertyDescription", "CoreData_NSPropertyMapping", "CoreData_NSQueryGenerationToken", "CoreData_NSRelationshipDescription", "CoreData_NSSaveChangesRequest", "CoreData_NSStagedMigrationManager"]
CoreLocation = ["Contacts", "Foundation", "CoreLocation_CLPlacemark"]
CoreLocation_CLBackgroundActivitySession = []
CoreLocation_CLBeacon = []
CoreLocation_CLBeaconIdentityCondition = ["CoreLocation_CLCondition"]
CoreLocation_CLBeaconIdentityConstraint = ["CoreLocation_CLBeaconIdentityCondition"]
CoreLocation_CLBeaconRegion = ["CoreLocation_CLRegion"]
CoreLocation_CLCircularGeographicCondition = ["CoreLocation_CLCondition"]
CoreLocation_CLCircularRegion = ["CoreLocation_CLRegion"]
CoreLocation_CLCondition = []
CoreLocation_CLFloor = []
CoreLocation_CLGeocoder = []
CoreLocation_CLHeading = []
CoreLocation_CLLocation = []
CoreLocation_CLLocationManager = []
CoreLocation_CLLocationSourceInformation = []
CoreLocation_CLLocationUpdater = []
CoreLocation_CLMonitor = []
CoreLocation_CLMonitorConfiguration = []
CoreLocation_CLMonitoringEvent = []
CoreLocation_CLMonitoringRecord = []
CoreLocation_CLPlacemark = []
CoreLocation_CLRegion = []
CoreLocation_CLUpdate = []
CoreLocation_CLVisit = []
CoreLocation_all = ["CoreLocation", "CoreLocation_CLBackgroundActivitySession", "CoreLocation_CLBeacon", "CoreLocation_CLBeaconIdentityCondition", "CoreLocation_CLBeaconIdentityConstraint", "CoreLocation_CLBeaconRegion", "CoreLocation_CLCircularGeographicCondition", "CoreLocation_CLCircularRegion", "CoreLocation_CLCondition", "CoreLocation_CLFloor", "CoreLocation_CLGeocoder", "CoreLocation_CLHeading", "CoreLocation_CLLocation", "CoreLocation_CLLocationManager", "CoreLocation_CLLocationSourceInformation", "CoreLocation_CLLocationUpdater", "CoreLocation_CLMonitor", "CoreLocation_CLMonitorConfiguration", "CoreLocation_CLMonitoringEvent", "CoreLocation_CLMonitoringRecord", "CoreLocation_CLPlacemark", "CoreLocation_CLRegion", "CoreLocation_CLUpdate", "CoreLocation_CLVisit"]
CoreWLAN = ["Foundation"]
CoreWLAN_CWChannel = []
CoreWLAN_CWConfiguration = []
CoreWLAN_CWInterface = []
CoreWLAN_CWMutableConfiguration = ["CoreWLAN_CWConfiguration"]
CoreWLAN_CWMutableNetworkProfile = ["CoreWLAN_CWNetworkProfile"]
CoreWLAN_CWNetwork = []
CoreWLAN_CWNetworkProfile = []
CoreWLAN_CWWiFiClient = []
CoreWLAN_all = ["CoreWLAN", "CoreWLAN_CWChannel", "CoreWLAN_CWConfiguration", "CoreWLAN_CWInterface", "CoreWLAN_CWMutableConfiguration", "CoreWLAN_CWMutableNetworkProfile", "CoreWLAN_CWNetwork", "CoreWLAN_CWNetworkProfile", "CoreWLAN_CWWiFiClient"]
DataDetection = ["Foundation"]
DataDetection_DDMatch = []
DataDetection_DDMatchCalendarEvent = ["DataDetection_DDMatch"]
DataDetection_DDMatchEmailAddress = ["DataDetection_DDMatch"]
DataDetection_DDMatchFlightNumber = ["DataDetection_DDMatch"]
DataDetection_DDMatchLink = ["DataDetection_DDMatch"]
DataDetection_DDMatchMoneyAmount = ["DataDetection_DDMatch"]
DataDetection_DDMatchPhoneNumber = ["DataDetection_DDMatch"]
DataDetection_DDMatchPostalAddress = ["DataDetection_DDMatch"]
DataDetection_DDMatchShipmentTrackingNumber = ["DataDetection_DDMatch"]
DataDetection_all = ["DataDetection", "DataDetection_DDMatch", "DataDetection_DDMatchCalendarEvent", "DataDetection_DDMatchEmailAddress", "DataDetection_DDMatchFlightNumber", "DataDetection_DDMatchLink", "DataDetection_DDMatchMoneyAmount", "DataDetection_DDMatchPhoneNumber", "DataDetection_DDMatchPostalAddress", "DataDetection_DDMatchShipmentTrackingNumber"]
DeviceCheck = ["Foundation"]
DeviceCheck_DCAppAttestService = []
DeviceCheck_DCDevice = []
DeviceCheck_all = ["DeviceCheck", "DeviceCheck_DCAppAttestService", "DeviceCheck_DCDevice"]
EventKit = ["AppKit", "CoreLocation", "Foundation", "MapKit", "EventKit_EKEvent"]
EventKit_EKAlarm = ["EventKit_EKObject"]
EventKit_EKCalendar = ["EventKit_EKObject"]
EventKit_EKCalendarItem = ["EventKit_EKObject"]
EventKit_EKEvent = ["EventKit_EKCalendarItem"]
EventKit_EKEventStore = []
EventKit_EKObject = []
EventKit_EKParticipant = ["EventKit_EKObject"]
EventKit_EKRecurrenceDayOfWeek = []
EventKit_EKRecurrenceEnd = []
EventKit_EKRecurrenceRule = ["EventKit_EKObject"]
EventKit_EKReminder = ["EventKit_EKCalendarItem"]
EventKit_EKSource = ["EventKit_EKObject"]
EventKit_EKStructuredLocation = ["EventKit_EKObject"]
EventKit_EKVirtualConferenceDescriptor = []
EventKit_EKVirtualConferenceProvider = []
EventKit_EKVirtualConferenceRoomTypeDescriptor = []
EventKit_EKVirtualConferenceURLDescriptor = []
EventKit_all = ["EventKit", "EventKit_EKAlarm", "EventKit_EKCalendar", "EventKit_EKCalendarItem", "EventKit_EKEvent", "EventKit_EKEventStore", "EventKit_EKObject", "EventKit_EKParticipant", "EventKit_EKRecurrenceDayOfWeek", "EventKit_EKRecurrenceEnd", "EventKit_EKRecurrenceRule", "EventKit_EKReminder", "EventKit_EKSource", "EventKit_EKStructuredLocation", "EventKit_EKVirtualConferenceDescriptor", "EventKit_EKVirtualConferenceProvider", "EventKit_EKVirtualConferenceRoomTypeDescriptor", "EventKit_EKVirtualConferenceURLDescriptor"]
ExceptionHandling = ["Foundation"]
ExceptionHandling_NSExceptionHandler = []
ExceptionHandling_all = ["ExceptionHandling", "ExceptionHandling_NSExceptionHandler"]
ExtensionKit = ["AppKit", "Foundation"]
ExtensionKit_EXAppExtensionBrowserViewController = ["AppKit_NSViewController"]
ExtensionKit_EXHostViewController = ["AppKit_NSViewController"]
ExtensionKit_all = ["ExtensionKit", "ExtensionKit_EXAppExtensionBrowserViewController", "ExtensionKit_EXHostViewController"]
ExternalAccessory = ["Foundation"]
ExternalAccessory_EAAccessory = []
ExternalAccessory_EAAccessoryManager = []
ExternalAccessory_EASession = []
ExternalAccessory_EAWiFiUnconfiguredAccessory = []
ExternalAccessory_EAWiFiUnconfiguredAccessoryBrowser = []
ExternalAccessory_all = ["ExternalAccessory", "ExternalAccessory_EAAccessory", "ExternalAccessory_EAAccessoryManager", "ExternalAccessory_EASession", "ExternalAccessory_EAWiFiUnconfiguredAccessory", "ExternalAccessory_EAWiFiUnconfiguredAccessoryBrowser"]
FileProvider = ["AppKit", "Foundation", "UniformTypeIdentifiers"]
FileProviderUI = ["AppKit", "FileProvider", "Foundation"]
FileProviderUI_FPUIActionExtensionContext = ["Foundation_NSExtensionContext"]
FileProviderUI_FPUIActionExtensionViewController = ["AppKit_NSViewController"]
FileProviderUI_all = ["FileProviderUI", "FileProviderUI_FPUIActionExtensionContext", "FileProviderUI_FPUIActionExtensionViewController"]
FileProvider_NSFileProviderDomain = []
FileProvider_NSFileProviderDomainVersion = []
FileProvider_NSFileProviderExtension = []
FileProvider_NSFileProviderItemVersion = []
FileProvider_NSFileProviderManager = []
FileProvider_NSFileProviderRequest = []
FileProvider_all = ["FileProvider", "FileProvider_NSFileProviderDomain", "FileProvider_NSFileProviderDomainVersion", "FileProvider_NSFileProviderExtension", "FileProvider_NSFileProviderItemVersion", "FileProvider_NSFileProviderManager", "FileProvider_NSFileProviderRequest"]
Foundation = ["objective-c", "block", "Foundation_NSError", "Foundation_NSAppleEventDescriptor", "Foundation_NSHashTable", "Foundation_NSMapTable", "Foundation_NSProgress", "Foundation_NSString", "Foundation_NSDictionary", "Foundation_NSEnumerator"]
Foundation_NSAffineTransform = []
Foundation_NSAppleEventDescriptor = []
Foundation_NSAppleEventManager = []
Foundation_NSAppleScript = []
Foundation_NSArchiver = ["Foundation_NSCoder"]
Foundation_NSArray = []
Foundation_NSAssertionHandler = []
Foundation_NSAttributedString = []
Foundation_NSAttributedStringMarkdownParsingOptions = []
Foundation_NSAttributedStringMarkdownSourcePosition = []
Foundation_NSAutoreleasePool = []
Foundation_NSBackgroundActivityScheduler = []
Foundation_NSBlockOperation = ["Foundation_NSOperation"]
Foundation_NSBundle = []
Foundation_NSBundleResourceRequest = []
Foundation_NSByteCountFormatter = ["Foundation_NSFormatter"]
Foundation_NSCache = []
Foundation_NSCachedURLResponse = []
Foundation_NSCalendar = []
Foundation_NSCalendarDate = ["Foundation_NSDate"]
Foundation_NSCharacterSet = []
Foundation_NSClassDescription = []
Foundation_NSCloneCommand = ["Foundation_NSScriptCommand"]
Foundation_NSCloseCommand = ["Foundation_NSScriptCommand"]
Foundation_NSCoder = []
Foundation_NSComparisonPredicate = ["Foundation_NSPredicate"]
Foundation_NSCompoundPredicate = ["Foundation_NSPredicate"]
Foundation_NSCondition = []
Foundation_NSConditionLock = []
Foundation_NSConnection = []
Foundation_NSConstantString = ["Foundation_NSSimpleCString"]
Foundation_NSCountCommand = ["Foundation_NSScriptCommand"]
Foundation_NSCountedSet = ["Foundation_NSMutableSet"]
Foundation_NSCreateCommand = ["Foundation_NSScriptCommand"]
Foundation_NSData = []
Foundation_NSDataDetector = ["Foundation_NSRegularExpression"]
Foundation_NSDate = []
Foundation_NSDateComponents = []
Foundation_NSDateComponentsFormatter = ["Foundation_NSFormatter"]
Foundation_NSDateFormatter = ["Foundation_NSFormatter"]
Foundation_NSDateInterval = []
Foundation_NSDateIntervalFormatter = ["Foundation_NSFormatter"]
Foundation_NSDecimalNumber = ["Foundation_NSNumber"]
Foundation_NSDecimalNumberHandler = []
Foundation_NSDeleteCommand = ["Foundation_NSScriptCommand"]
Foundation_NSDictionary = []
Foundation_NSDimension = ["Foundation_NSUnit"]
Foundation_NSDirectoryEnumerator = ["Foundation_NSEnumerator"]
Foundation_NSDistantObject = ["Foundation_NSProxy"]
Foundation_NSDistantObjectRequest = []
Foundation_NSDistributedLock = []
Foundation_NSDistributedNotificationCenter = ["Foundation_NSNotificationCenter"]
Foundation_NSEnergyFormatter = ["Foundation_NSFormatter"]
Foundation_NSEnumerator = []
Foundation_NSError = []
Foundation_NSException = []
Foundation_NSExistsCommand = ["Foundation_NSScriptCommand"]
Foundation_NSExpression = []
Foundation_NSExtensionContext = []
Foundation_NSExtensionItem = []
Foundation_NSFileAccessIntent = []
Foundation_NSFileCoordinator = []
Foundation_NSFileHandle = []
Foundation_NSFileManager = []
Foundation_NSFileProviderService = []
Foundation_NSFileSecurity = []
Foundation_NSFileVersion = []
Foundation_NSFileWrapper = []
Foundation_NSFormatter = []
Foundation_NSGarbageCollector = []
Foundation_NSGetCommand = ["Foundation_NSScriptCommand"]
Foundation_NSHTTPCookie = []
Foundation_NSHTTPCookieStorage = []
Foundation_NSHTTPURLResponse = ["Foundation_NSURLResponse"]
Foundation_NSHashTable = []
Foundation_NSHost = []
Foundation_NSISO8601DateFormatter = ["Foundation_NSFormatter"]
Foundation_NSIndexPath = []
Foundation_NSIndexSet = []
Foundation_NSIndexSpecifier = ["Foundation_NSScriptObjectSpecifier"]
Foundation_NSInflectionRule = []
Foundation_NSInflectionRuleExplicit = ["Foundation_NSInflectionRule"]
Foundation_NSInputStream = ["Foundation_NSStream"]
Foundation_NSInvocation = []
Foundation_NSInvocationOperation = ["Foundation_NSOperation"]
Foundation_NSItemProvider = []
Foundation_NSJSONSerialization = []
Foundation_NSKeyedArchiver = ["Foundation_NSCoder"]
Foundation_NSKeyedUnarchiver = ["Foundation_NSCoder"]
Foundation_NSLengthFormatter = ["Foundation_NSFormatter"]
Foundation_NSLinguisticTagger = []
Foundation_NSListFormatter = ["Foundation_NSFormatter"]
Foundation_NSLocale = []
Foundation_NSLock = []
Foundation_NSLogicalTest = ["Foundation_NSScriptWhoseTest"]
Foundation_NSMachBootstrapServer = ["Foundation_NSPortNameServer"]
Foundation_NSMachPort = ["Foundation_NSPort"]
Foundation_NSMapTable = []
Foundation_NSMassFormatter = ["Foundation_NSFormatter"]
Foundation_NSMeasurement = []
Foundation_NSMeasurementFormatter = ["Foundation_NSFormatter"]
Foundation_NSMessagePort = ["Foundation_NSPort"]
Foundation_NSMessagePortNameServer = ["Foundation_NSPortNameServer"]
Foundation_NSMetadataItem = []
Foundation_NSMetadataQuery = []
Foundation_NSMetadataQueryAttributeValueTuple = []
Foundation_NSMetadataQueryResultGroup = []
Foundation_NSMethodSignature = []
Foundation_NSMiddleSpecifier = ["Foundation_NSScriptObjectSpecifier"]
Foundation_NSMorphology = []
Foundation_NSMorphologyCustomPronoun = []
Foundation_NSMorphologyPronoun = []
Foundation_NSMoveCommand = ["Foundation_NSScriptCommand"]
Foundation_NSMutableArray = ["Foundation_NSArray"]
Foundation_NSMutableAttributedString = ["Foundation_NSAttributedString"]
Foundation_NSMutableCharacterSet = ["Foundation_NSCharacterSet"]
Foundation_NSMutableData = ["Foundation_NSData"]
Foundation_NSMutableDictionary = ["Foundation_NSDictionary"]
Foundation_NSMutableIndexSet = ["Foundation_NSIndexSet"]
Foundation_NSMutableOrderedSet = ["Foundation_NSOrderedSet"]
Foundation_NSMutableSet = ["Foundation_NSSet"]
Foundation_NSMutableString = ["Foundation_NSString"]
Foundation_NSMutableURLRequest = ["Foundation_NSURLRequest"]
Foundation_NSNameSpecifier = ["Foundation_NSScriptObjectSpecifier"]
Foundation_NSNetService = []
Foundation_NSNetServiceBrowser = []
Foundation_NSNotification = []
Foundation_NSNotificationCenter = []
Foundation_NSNotificationQueue = []
Foundation_NSNull = []
Foundation_NSNumber = ["Foundation_NSValue"]
Foundation_NSNumberFormatter = ["Foundation_NSFormatter"]
Foundation_NSOperation = []
Foundation_NSOperationQueue = []
Foundation_NSOrderedCollectionChange = []
Foundation_NSOrderedCollectionDifference = []
Foundation_NSOrderedSet = []
Foundation_NSOrthography = []
Foundation_NSOutputStream = ["Foundation_NSStream"]
Foundation_NSPersonNameComponents = []
Foundation_NSPersonNameComponentsFormatter = ["Foundation_NSFormatter"]
Foundation_NSPipe = []
Foundation_NSPointerArray = []
Foundation_NSPointerFunctions = []
Foundation_NSPort = []
Foundation_NSPortCoder = ["Foundation_NSCoder"]
Foundation_NSPortMessage = []
Foundation_NSPortNameServer = []
Foundation_NSPositionalSpecifier = []
Foundation_NSPredicate = []
Foundation_NSPresentationIntent = []
Foundation_NSProcessInfo = []
Foundation_NSProgress = []
Foundation_NSPropertyListSerialization = []
Foundation_NSPropertySpecifier = ["Foundation_NSScriptObjectSpecifier"]
Foundation_NSProtocolChecker = ["Foundation_NSProxy"]
Foundation_NSProxy = []
Foundation_NSPurgeableData = ["Foundation_NSMutableData"]
Foundation_NSQuitCommand = ["Foundation_NSScriptCommand"]
Foundation_NSRandomSpecifier = ["Foundation_NSScriptObjectSpecifier"]
Foundation_NSRangeSpecifier = ["Foundation_NSScriptObjectSpecifier"]
Foundation_NSRecursiveLock = []
Foundation_NSRegularExpression = []
Foundation_NSRelativeDateTimeFormatter = ["Foundation_NSFormatter"]
Foundation_NSRelativeSpecifier = ["Foundation_NSScriptObjectSpecifier"]
Foundation_NSRunLoop = []
Foundation_NSScanner = []
Foundation_NSScriptClassDescription = ["Foundation_NSClassDescription"]
Foundation_NSScriptCoercionHandler = []
Foundation_NSScriptCommand = []
Foundation_NSScriptCommandDescription = []
Foundation_NSScriptExecutionContext = []
Foundation_NSScriptObjectSpecifier = []
Foundation_NSScriptSuiteRegistry = []
Foundation_NSScriptWhoseTest = []
Foundation_NSSecureUnarchiveFromDataTransformer = ["Foundation_NSValueTransformer"]
Foundation_NSSet = []
Foundation_NSSetCommand = ["Foundation_NSScriptCommand"]
Foundation_NSSimpleCString = ["Foundation_NSString"]
Foundation_NSSocketPort = ["Foundation_NSPort"]
Foundation_NSSocketPortNameServer = ["Foundation_NSPortNameServer"]
Foundation_NSSortDescriptor = []
Foundation_NSSpecifierTest = ["Foundation_NSScriptWhoseTest"]
Foundation_NSSpellServer = []
Foundation_NSStream = []
Foundation_NSString = []
Foundation_NSTask = []
Foundation_NSTermOfAddress = []
Foundation_NSTextCheckingResult = []
Foundation_NSThread = []
Foundation_NSTimeZone = []
Foundation_NSTimer = []
Foundation_NSURL = []
Foundation_NSURLAuthenticationChallenge = []
Foundation_NSURLCache = []
Foundation_NSURLComponents = []
Foundation_NSURLConnection = []
Foundation_NSURLCredential = []
Foundation_NSURLCredentialStorage = []
Foundation_NSURLDownload = []
Foundation_NSURLHandle = []
Foundation_NSURLProtectionSpace = []
Foundation_NSURLProtocol = []
Foundation_NSURLQueryItem = []
Foundation_NSURLRequest = []
Foundation_NSURLResponse = []
Foundation_NSURLSession = []
Foundation_NSURLSessionConfiguration = []
Foundation_NSURLSessionDataTask = ["Foundation_NSURLSessionTask"]
Foundation_NSURLSessionDownloadTask = ["Foundation_NSURLSessionTask"]
Foundation_NSURLSessionStreamTask = ["Foundation_NSURLSessionTask"]
Foundation_NSURLSessionTask = []
Foundation_NSURLSessionTaskMetrics = []
Foundation_NSURLSessionTaskTransactionMetrics = []
Foundation_NSURLSessionUploadTask = ["Foundation_NSURLSessionDataTask"]
Foundation_NSURLSessionWebSocketMessage = []
Foundation_NSURLSessionWebSocketTask = ["Foundation_NSURLSessionTask"]
Foundation_NSUUID = []
Foundation_NSUbiquitousKeyValueStore = []
Foundation_NSUnarchiver = ["Foundation_NSCoder"]
Foundation_NSUndoManager = []
Foundation_NSUniqueIDSpecifier = ["Foundation_NSScriptObjectSpecifier"]
Foundation_NSUnit = []
Foundation_NSUnitAcceleration = ["Foundation_NSDimension"]
Foundation_NSUnitAngle = ["Foundation_NSDimension"]
Foundation_NSUnitArea = ["Foundation_NSDimension"]
Foundation_NSUnitConcentrationMass = ["Foundation_NSDimension"]
Foundation_NSUnitConverter = []
Foundation_NSUnitConverterLinear = ["Foundation_NSUnitConverter"]
Foundation_NSUnitDispersion = ["Foundation_NSDimension"]
Foundation_NSUnitDuration = ["Foundation_NSDimension"]
Foundation_NSUnitElectricCharge = ["Foundation_NSDimension"]
Foundation_NSUnitElectricCurrent = ["Foundation_NSDimension"]
Foundation_NSUnitElectricPotentialDifference = ["Foundation_NSDimension"]
Foundation_NSUnitElectricResistance = ["Foundation_NSDimension"]
Foundation_NSUnitEnergy = ["Foundation_NSDimension"]
Foundation_NSUnitFrequency = ["Foundation_NSDimension"]
Foundation_NSUnitFuelEfficiency = ["Foundation_NSDimension"]
Foundation_NSUnitIlluminance = ["Foundation_NSDimension"]
Foundation_NSUnitInformationStorage = ["Foundation_NSDimension"]
Foundation_NSUnitLength = ["Foundation_NSDimension"]
Foundation_NSUnitMass = ["Foundation_NSDimension"]
Foundation_NSUnitPower = ["Foundation_NSDimension"]
Foundation_NSUnitPressure = ["Foundation_NSDimension"]
Foundation_NSUnitSpeed = ["Foundation_NSDimension"]
Foundation_NSUnitTemperature = ["Foundation_NSDimension"]
Foundation_NSUnitVolume = ["Foundation_NSDimension"]
Foundation_NSUserActivity = []
Foundation_NSUserAppleScriptTask = ["Foundation_NSUserScriptTask"]
Foundation_NSUserAutomatorTask = ["Foundation_NSUserScriptTask"]
Foundation_NSUserDefaults = []
Foundation_NSUserNotification = []
Foundation_NSUserNotificationAction = []
Foundation_NSUserNotificationCenter = []
Foundation_NSUserScriptTask = []
Foundation_NSUserUnixTask = ["Foundation_NSUserScriptTask"]
Foundation_NSValue = []
Foundation_NSValueTransformer = []
Foundation_NSWhoseSpecifier = ["Foundation_NSScriptObjectSpecifier"]
Foundation_NSXMLDTD = ["Foundation_NSXMLNode"]
Foundation_NSXMLDTDNode = ["Foundation_NSXMLNode"]
Foundation_NSXMLDocument = ["Foundation_NSXMLNode"]
Foundation_NSXMLElement = ["Foundation_NSXMLNode"]
Foundation_NSXMLNode = []
Foundation_NSXMLParser = []
Foundation_NSXPCCoder = ["Foundation_NSCoder"]
Foundation_NSXPCConnection = []
Foundation_NSXPCInterface = []
Foundation_NSXPCListener = []
Foundation_NSXPCListenerEndpoint = []
Foundation_all = ["Foundation", "Foundation_NSAffineTransform", "Foundation_NSAppleEventDescriptor", "Foundation_NSAppleEventManager", "Foundation_NSAppleScript", "Foundation_NSArchiver", "Foundation_NSArray", "Foundation_NSAssertionHandler", "Foundation_NSAttributedString", "Foundation_NSAttributedStringMarkdownParsingOptions", "Foundation_NSAttributedStringMarkdownSourcePosition", "Foundation_NSAutoreleasePool", "Foundation_NSBackgroundActivityScheduler", "Foundation_NSBlockOperation", "Foundation_NSBundle", "Foundation_NSBundleResourceRequest", "Foundation_NSByteCountFormatter", "Foundation_NSCache", "Foundation_NSCachedURLResponse", "Foundation_NSCalendar", "Foundation_NSCalendarDate", "Foundation_NSCharacterSet", "Foundation_NSClassDescription", "Foundation_NSCloneCommand", "Foundation_NSCloseCommand", "Foundation_NSCoder", "Foundation_NSComparisonPredicate", "Foundation_NSCompoundPredicate", "Foundation_NSCondition", "Foundation_NSConditionLock", "Foundation_NSConnection", "Foundation_NSConstantString", "Foundation_NSCountCommand", "Foundation_NSCountedSet", "Foundation_NSCreateCommand", "Foundation_NSData", "Foundation_NSDataDetector", "Foundation_NSDate", "Foundation_NSDateComponents", "Foundation_NSDateComponentsFormatter", "Foundation_NSDateFormatter", "Foundation_NSDateInterval", "Foundation_NSDateIntervalFormatter", "Foundation_NSDecimalNumber", "Foundation_NSDecimalNumberHandler", "Foundation_NSDeleteCommand", "Foundation_NSDictionary", "Foundation_NSDimension", "Foundation_NSDirectoryEnumerator", "Foundation_NSDistantObject", "Foundation_NSDistantObjectRequest", "Foundation_NSDistributedLock", "Foundation_NSDistributedNotificationCenter", "Foundation_NSEnergyFormatter", "Foundation_NSEnumerator", "Foundation_NSError", "Foundation_NSException", "Foundation_NSExistsCommand", "Foundation_NSExpression", "Foundation_NSExtensionContext", "Foundation_NSExtensionItem", "Foundation_NSFileAccessIntent", "Foundation_NSFileCoordinator", "Foundation_NSFileHandle", "Foundation_NSFileManager", "Foundation_NSFileProviderService", "Foundation_NSFileSecurity", "Foundation_NSFileVersion", "Foundation_NSFileWrapper", "Foundation_NSFormatter", "Foundation_NSGarbageCollector", "Foundation_NSGetCommand", "Foundation_NSHTTPCookie", "Foundation_NSHTTPCookieStorage", "Foundation_NSHTTPURLResponse", "Foundation_NSHashTable", "Foundation_NSHost", "Foundation_NSISO8601DateFormatter", "Foundation_NSIndexPath", "Foundation_NSIndexSet", "Foundation_NSIndexSpecifier", "Foundation_NSInflectionRule", "Foundation_NSInflectionRuleExplicit", "Foundation_NSInputStream", "Foundation_NSInvocation", "Foundation_NSInvocationOperation", "Foundation_NSItemProvider", "Foundation_NSJSONSerialization", "Foundation_NSKeyedArchiver", "Foundation_NSKeyedUnarchiver", "Foundation_NSLengthFormatter", "Foundation_NSLinguisticTagger", "Foundation_NSListFormatter", "Foundation_NSLocale", "Foundation_NSLock", "Foundation_NSLogicalTest", "Foundation_NSMachBootstrapServer", "Foundation_NSMachPort", "Foundation_NSMapTable", "Foundation_NSMassFormatter", "Foundation_NSMeasurement", "Foundation_NSMeasurementFormatter", "Foundation_NSMessagePort", "Foundation_NSMessagePortNameServer", "Foundation_NSMetadataItem", "Foundation_NSMetadataQuery", "Foundation_NSMetadataQueryAttributeValueTuple", "Foundation_NSMetadataQueryResultGroup", "Foundation_NSMethodSignature", "Foundation_NSMiddleSpecifier", "Foundation_NSMorphology", "Foundation_NSMorphologyCustomPronoun", "Foundation_NSMorphologyPronoun", "Foundation_NSMoveCommand", "Foundation_NSMutableArray", "Foundation_NSMutableAttributedString", "Foundation_NSMutableCharacterSet", "Foundation_NSMutableData", "Foundation_NSMutableDictionary", "Foundation_NSMutableIndexSet", "Foundation_NSMutableOrderedSet", "Foundation_NSMutableSet", "Foundation_NSMutableString", "Foundation_NSMutableURLRequest", "Foundation_NSNameSpecifier", "Foundation_NSNetService", "Foundation_NSNetServiceBrowser", "Foundation_NSNotification", "Foundation_NSNotificationCenter", "Foundation_NSNotificationQueue", "Foundation_NSNull", "Foundation_NSNumber", "Foundation_NSNumberFormatter", "Foundation_NSOperation", "Foundation_NSOperationQueue", "Foundation_NSOrderedCollectionChange", "Foundation_NSOrderedCollectionDifference", "Foundation_NSOrderedSet", "Foundation_NSOrthography", "Foundation_NSOutputStream", "Foundation_NSPersonNameComponents", "Foundation_NSPersonNameComponentsFormatter", "Foundation_NSPipe", "Foundation_NSPointerArray", "Foundation_NSPointerFunctions", "Foundation_NSPort", "Foundation_NSPortCoder", "Foundation_NSPortMessage", "Foundation_NSPortNameServer", "Foundation_NSPositionalSpecifier", "Foundation_NSPredicate", "Foundation_NSPresentationIntent", "Foundation_NSProcessInfo", "Foundation_NSProgress", "Foundation_NSPropertyListSerialization", "Foundation_NSPropertySpecifier", "Foundation_NSProtocolChecker", "Foundation_NSPurgeableData", "Foundation_NSQuitCommand", "Foundation_NSRandomSpecifier", "Foundation_NSRangeSpecifier", "Foundation_NSRecursiveLock", "Foundation_NSRegularExpression", "Foundation_NSRelativeDateTimeFormatter", "Foundation_NSRelativeSpecifier", "Foundation_NSRunLoop", "Foundation_NSScanner", "Foundation_NSScriptClassDescription", "Foundation_NSScriptCoercionHandler", "Foundation_NSScriptCommand", "Foundation_NSScriptCommandDescription", "Foundation_NSScriptExecutionContext", "Foundation_NSScriptObjectSpecifier", "Foundation_NSScriptSuiteRegistry", "Foundation_NSScriptWhoseTest", "Foundation_NSSecureUnarchiveFromDataTransformer", "Foundation_NSSet", "Foundation_NSSetCommand", "Foundation_NSSimpleCString", "Foundation_NSSocketPort", "Foundation_NSSocketPortNameServer", "Foundation_NSSortDescriptor", "Foundation_NSSpecifierTest", "Foundation_NSSpellServer", "Foundation_NSStream", "Foundation_NSString", "Foundation_NSTask", "Foundation_NSTermOfAddress", "Foundation_NSTextCheckingResult", "Foundation_NSThread", "Foundation_NSTimeZone", "Foundation_NSTimer", "Foundation_NSURL", "Foundation_NSURLAuthenticationChallenge", "Foundation_NSURLCache", "Foundation_NSURLComponents", "Foundation_NSURLConnection", "Foundation_NSURLCredential", "Foundation_NSURLCredentialStorage", "Foundation_NSURLDownload", "Foundation_NSURLHandle", "Foundation_NSURLProtectionSpace", "Foundation_NSURLProtocol", "Foundation_NSURLQueryItem", "Foundation_NSURLRequest", "Foundation_NSURLResponse", "Foundation_NSURLSession", "Foundation_NSURLSessionConfiguration", "Foundation_NSURLSessionDataTask", "Foundation_NSURLSessionDownloadTask", "Foundation_NSURLSessionStreamTask", "Foundation_NSURLSessionTask", "Foundation_NSURLSessionTaskMetrics", "Foundation_NSURLSessionTaskTransactionMetrics", "Foundation_NSURLSessionUploadTask", "Foundation_NSURLSessionWebSocketMessage", "Foundation_NSURLSessionWebSocketTask", "Foundation_NSUUID", "Foundation_NSUbiquitousKeyValueStore", "Foundation_NSUnarchiver", "Foundation_NSUndoManager", "Foundation_NSUniqueIDSpecifier", "Foundation_NSUnit", "Foundation_NSUnitAcceleration", "Foundation_NSUnitAngle", "Foundation_NSUnitArea", "Foundation_NSUnitConcentrationMass", "Foundation_NSUnitConverter", "Foundation_NSUnitConverterLinear", "Foundation_NSUnitDispersion", "Foundation_NSUnitDuration", "Foundation_NSUnitElectricCharge", "Foundation_NSUnitElectricCurrent", "Foundation_NSUnitElectricPotentialDifference", "Foundation_NSUnitElectricResistance", "Foundation_NSUnitEnergy", "Foundation_NSUnitFrequency", "Foundation_NSUnitFuelEfficiency", "Foundation_NSUnitIlluminance", "Foundation_NSUnitInformationStorage", "Foundation_NSUnitLength", "Foundation_NSUnitMass", "Foundation_NSUnitPower", "Foundation_NSUnitPressure", "Foundation_NSUnitSpeed", "Foundation_NSUnitTemperature", "Foundation_NSUnitVolume", "Foundation_NSUserActivity", "Foundation_NSUserAppleScriptTask", "Foundation_NSUserAutomatorTask", "Foundation_NSUserDefaults", "Foundation_NSUserNotification", "Foundation_NSUserNotificationAction", "Foundation_NSUserNotificationCenter", "Foundation_NSUserScriptTask", "Foundation_NSUserUnixTask", "Foundation_NSValue", "Foundation_NSValueTransformer", "Foundation_NSWhoseSpecifier", "Foundation_NSXMLDTD", "Foundation_NSXMLDTDNode", "Foundation_NSXMLDocument", "Foundation_NSXMLElement", "Foundation_NSXMLNode", "Foundation_NSXMLParser", "Foundation_NSXPCCoder", "Foundation_NSXPCConnection", "Foundation_NSXPCInterface", "Foundation_NSXPCListener", "Foundation_NSXPCListenerEndpoint"]
GameController = ["AppKit", "Foundation", "GameController_GCControllerAxisInput", "GameController_GCControllerButtonInput", "GameController_GCControllerDirectionPad", "GameController_GCControllerTouchpad", "GameController_GCExtendedGamepad", "GameController_GCControllerElement", "GameController_GCGamepad", "GameController_GCKeyboardInput", "GameController_GCMicroGamepad", "GameController_GCMotion", "GameController_GCMouseInput"]
GameController_GCColor = []
GameController_GCController = []
GameController_GCControllerAxisInput = ["GameController_GCControllerElement"]
GameController_GCControllerButtonInput = ["GameController_GCControllerElement"]
GameController_GCControllerDirectionPad = ["GameController_GCControllerElement"]
GameController_GCControllerElement = []
GameController_GCControllerInputState = []
GameController_GCControllerLiveInput = ["GameController_GCControllerInputState"]
GameController_GCControllerTouchpad = ["GameController_GCControllerElement"]
GameController_GCDeviceBattery = []
GameController_GCDeviceCursor = ["GameController_GCControllerDirectionPad"]
GameController_GCDeviceHaptics = []
GameController_GCDeviceLight = []
GameController_GCDirectionalGamepad = ["GameController_GCMicroGamepad"]
GameController_GCDualSenseAdaptiveTrigger = ["GameController_GCControllerButtonInput"]
GameController_GCDualSenseGamepad = ["GameController_GCExtendedGamepad"]
GameController_GCDualShockGamepad = ["GameController_GCExtendedGamepad"]
GameController_GCEventViewController = ["AppKit_NSViewController"]
GameController_GCExtendedGamepad = ["GameController_GCPhysicalInputProfile"]
GameController_GCExtendedGamepadSnapshot = ["GameController_GCExtendedGamepad"]
GameController_GCGamepad = ["GameController_GCPhysicalInputProfile"]
GameController_GCGamepadSnapshot = ["GameController_GCGamepad"]
GameController_GCGearShifterElement = []
GameController_GCKeyboard = []
GameController_GCKeyboardInput = ["GameController_GCPhysicalInputProfile"]
GameController_GCMicroGamepad = ["GameController_GCPhysicalInputProfile"]
GameController_GCMicroGamepadSnapshot = ["GameController_GCMicroGamepad"]
GameController_GCMotion = []
GameController_GCMouse = []
GameController_GCMouseInput = ["GameController_GCPhysicalInputProfile"]
GameController_GCPhysicalInputElementCollection = []
GameController_GCPhysicalInputProfile = []
GameController_GCRacingWheel = []
GameController_GCRacingWheelInput = ["GameController_GCRacingWheelInputState"]
GameController_GCRacingWheelInputState = []
GameController_GCSteeringWheelElement = []
GameController_GCXboxGamepad = ["GameController_GCExtendedGamepad"]
GameController_all = ["GameController", "GameController_GCColor", "GameController_GCController", "GameController_GCControllerAxisInput", "GameController_GCControllerButtonInput", "GameController_GCControllerDirectionPad", "GameController_GCControllerElement", "GameController_GCControllerInputState", "GameController_GCControllerLiveInput", "GameController_GCControllerTouchpad", "GameController_GCDeviceBattery", "GameController_GCDeviceCursor", "GameController_GCDeviceHaptics", "GameController_GCDeviceLight", "GameController_GCDirectionalGamepad", "GameController_GCDualSenseAdaptiveTrigger", "GameController_GCDualSenseGamepad", "GameController_GCDualShockGamepad", "GameController_GCEventViewController", "GameController_GCExtendedGamepad", "GameController_GCExtendedGamepadSnapshot", "GameController_GCGamepad", "GameController_GCGamepadSnapshot", "GameController_GCGearShifterElement", "GameController_GCKeyboard", "GameController_GCKeyboardInput", "GameController_GCMicroGamepad", "GameController_GCMicroGamepadSnapshot", "GameController_GCMotion", "GameController_GCMouse", "GameController_GCMouseInput", "GameController_GCPhysicalInputElementCollection", "GameController_GCPhysicalInputProfile", "GameController_GCRacingWheel", "GameController_GCRacingWheelInput", "GameController_GCRacingWheelInputState", "GameController_GCSteeringWheelElement", "GameController_GCXboxGamepad"]
GameKit = ["AppKit", "Foundation", "AppKit_NSViewController"]
GameKit_GKAccessPoint = []
GameKit_GKAchievement = []
GameKit_GKAchievementChallenge = ["GameKit_GKChallenge"]
GameKit_GKAchievementDescription = []
GameKit_GKAchievementViewController = ["GameKit_GKGameCenterViewController"]
GameKit_GKBasePlayer = []
GameKit_GKChallenge = []
GameKit_GKChallengeEventHandler = []
GameKit_GKChallengesViewController = ["AppKit_NSViewController"]
GameKit_GKCloudPlayer = ["GameKit_GKBasePlayer"]
GameKit_GKDialogController = ["AppKit_NSResponder"]
GameKit_GKFriendRequestComposeViewController = ["AppKit_NSViewController"]
GameKit_GKGameCenterViewController = ["AppKit_NSViewController"]
GameKit_GKGameSession = []
GameKit_GKInvite = []
GameKit_GKLeaderboard = []
GameKit_GKLeaderboardEntry = []
GameKit_GKLeaderboardScore = []
GameKit_GKLeaderboardSet = []
GameKit_GKLeaderboardViewController = ["GameKit_GKGameCenterViewController"]
GameKit_GKLocalPlayer = ["GameKit_GKPlayer"]
GameKit_GKMatch = []
GameKit_GKMatchRequest = []
GameKit_GKMatchmaker = []
GameKit_GKMatchmakerViewController = ["AppKit_NSViewController"]
GameKit_GKNotificationBanner = []
GameKit_GKPlayer = ["GameKit_GKBasePlayer"]
GameKit_GKSavedGame = []
GameKit_GKScore = []
GameKit_GKScoreChallenge = ["GameKit_GKChallenge"]
GameKit_GKSession = []
GameKit_GKTurnBasedEventHandler = []
GameKit_GKTurnBasedExchange = []
GameKit_GKTurnBasedExchangeReply = []
GameKit_GKTurnBasedMatch = []
GameKit_GKTurnBasedMatchmakerViewController = ["AppKit_NSViewController"]
GameKit_GKTurnBasedParticipant = []
GameKit_GKVoiceChat = []
GameKit_GKVoiceChatService = []
GameKit_all = ["GameKit", "GameKit_GKAccessPoint", "GameKit_GKAchievement", "GameKit_GKAchievementChallenge", "GameKit_GKAchievementDescription", "GameKit_GKAchievementViewController", "GameKit_GKBasePlayer", "GameKit_GKChallenge", "GameKit_GKChallengeEventHandler", "GameKit_GKChallengesViewController", "GameKit_GKCloudPlayer", "GameKit_GKDialogController", "GameKit_GKFriendRequestComposeViewController", "GameKit_GKGameCenterViewController", "GameKit_GKGameSession", "GameKit_GKInvite", "GameKit_GKLeaderboard", "GameKit_GKLeaderboardEntry", "GameKit_GKLeaderboardScore", "GameKit_GKLeaderboardSet", "GameKit_GKLeaderboardViewController", "GameKit_GKLocalPlayer", "GameKit_GKMatch", "GameKit_GKMatchRequest", "GameKit_GKMatchmaker", "GameKit_GKMatchmakerViewController", "GameKit_GKNotificationBanner", "GameKit_GKPlayer", "GameKit_GKSavedGame", "GameKit_GKScore", "GameKit_GKScoreChallenge", "GameKit_GKSession", "GameKit_GKTurnBasedEventHandler", "GameKit_GKTurnBasedExchange", "GameKit_GKTurnBasedExchangeReply", "GameKit_GKTurnBasedMatch", "GameKit_GKTurnBasedMatchmakerViewController", "GameKit_GKTurnBasedParticipant", "GameKit_GKVoiceChat", "GameKit_GKVoiceChatService"]
HealthKit = ["CoreLocation", "Foundation", "UniformTypeIdentifiers"]
HealthKit_HKActivityMoveModeObject = []
HealthKit_HKActivitySummary = []
HealthKit_HKActivitySummaryQuery = ["HealthKit_HKQuery"]
HealthKit_HKActivitySummaryType = ["HealthKit_HKObjectType"]
HealthKit_HKAnchoredObjectQuery = ["HealthKit_HKQuery"]
HealthKit_HKAttachment = []
HealthKit_HKAttachmentStore = []
HealthKit_HKAudiogramSample = ["HealthKit_HKSample"]
HealthKit_HKAudiogramSampleType = ["HealthKit_HKSampleType"]
HealthKit_HKAudiogramSensitivityPoint = []
HealthKit_HKBiologicalSexObject = []
HealthKit_HKBloodTypeObject = []
HealthKit_HKCDADocument = []
HealthKit_HKCDADocumentSample = ["HealthKit_HKDocumentSample"]
HealthKit_HKCategorySample = ["HealthKit_HKSample"]
HealthKit_HKCategoryType = ["HealthKit_HKSampleType"]
HealthKit_HKCharacteristicType = ["HealthKit_HKObjectType"]
HealthKit_HKClinicalRecord = ["HealthKit_HKSample"]
HealthKit_HKClinicalType = ["HealthKit_HKSampleType"]
HealthKit_HKContactsLensSpecification = ["HealthKit_HKLensSpecification"]
HealthKit_HKContactsPrescription = ["HealthKit_HKVisionPrescription"]
HealthKit_HKCorrelation = ["HealthKit_HKSample"]
HealthKit_HKCorrelationQuery = ["HealthKit_HKQuery"]
HealthKit_HKCorrelationType = ["HealthKit_HKSampleType"]
HealthKit_HKCumulativeQuantitySample = ["HealthKit_HKQuantitySample"]
HealthKit_HKCumulativeQuantitySeriesSample = ["HealthKit_HKCumulativeQuantitySample"]
HealthKit_HKDeletedObject = []
HealthKit_HKDevice = []
HealthKit_HKDiscreteQuantitySample = ["HealthKit_HKQuantitySample"]
HealthKit_HKDocumentQuery = ["HealthKit_HKQuery"]
HealthKit_HKDocumentSample = ["HealthKit_HKSample"]
HealthKit_HKDocumentType = ["HealthKit_HKSampleType"]
HealthKit_HKElectrocardiogram = ["HealthKit_HKSample"]
HealthKit_HKElectrocardiogramQuery = ["HealthKit_HKQuery"]
HealthKit_HKElectrocardiogramType = ["HealthKit_HKSampleType"]
HealthKit_HKElectrocardiogramVoltageMeasurement = []
HealthKit_HKFHIRResource = []
HealthKit_HKFHIRVersion = []
HealthKit_HKFitzpatrickSkinTypeObject = []
HealthKit_HKGlassesLensSpecification = ["HealthKit_HKLensSpecification"]
HealthKit_HKGlassesPrescription = ["HealthKit_HKVisionPrescription"]
HealthKit_HKHealthStore = []
HealthKit_HKHeartbeatSeriesBuilder = ["HealthKit_HKSeriesBuilder"]
HealthKit_HKHeartbeatSeriesQuery = ["HealthKit_HKQuery"]
HealthKit_HKHeartbeatSeriesSample = ["HealthKit_HKSeriesSample"]
HealthKit_HKLensSpecification = []
HealthKit_HKLiveWorkoutBuilder = ["HealthKit_HKWorkoutBuilder"]
HealthKit_HKLiveWorkoutDataSource = []
HealthKit_HKObject = []
HealthKit_HKObjectType = []
HealthKit_HKObserverQuery = ["HealthKit_HKQuery"]
HealthKit_HKPrescriptionType = ["HealthKit_HKSampleType"]
HealthKit_HKQuantity = []
HealthKit_HKQuantitySample = ["HealthKit_HKSample"]
HealthKit_HKQuantitySeriesSampleBuilder = []
HealthKit_HKQuantitySeriesSampleQuery = ["HealthKit_HKQuery"]
HealthKit_HKQuantityType = ["HealthKit_HKSampleType"]
HealthKit_HKQuery = []
HealthKit_HKQueryAnchor = []
HealthKit_HKQueryDescriptor = []
HealthKit_HKSample = ["HealthKit_HKObject"]
HealthKit_HKSampleQuery = ["HealthKit_HKQuery"]
HealthKit_HKSampleType = ["HealthKit_HKObjectType"]
HealthKit_HKSeriesBuilder = []
HealthKit_HKSeriesSample = ["HealthKit_HKSample"]
HealthKit_HKSeriesType = ["HealthKit_HKSampleType"]
HealthKit_HKSource = []
HealthKit_HKSourceQuery = ["HealthKit_HKQuery"]
HealthKit_HKSourceRevision = []
HealthKit_HKStatistics = []
HealthKit_HKStatisticsCollection = []
HealthKit_HKStatisticsCollectionQuery = ["HealthKit_HKQuery"]
HealthKit_HKStatisticsQuery = ["HealthKit_HKQuery"]
HealthKit_HKUnit = []
HealthKit_HKVerifiableClinicalRecord = ["HealthKit_HKSample"]
HealthKit_HKVerifiableClinicalRecordQuery = ["HealthKit_HKQuery"]
HealthKit_HKVerifiableClinicalRecordSubject = []
HealthKit_HKVisionPrescription = ["HealthKit_HKSample"]
HealthKit_HKVisionPrism = []
HealthKit_HKWheelchairUseObject = []
HealthKit_HKWorkout = ["HealthKit_HKSample"]
HealthKit_HKWorkoutActivity = []
HealthKit_HKWorkoutBuilder = []
HealthKit_HKWorkoutConfiguration = []
HealthKit_HKWorkoutEvent = []
HealthKit_HKWorkoutRoute = ["HealthKit_HKSeriesSample"]
HealthKit_HKWorkoutRouteBuilder = ["HealthKit_HKSeriesBuilder"]
HealthKit_HKWorkoutRouteQuery = ["HealthKit_HKQuery"]
HealthKit_HKWorkoutSession = []
HealthKit_HKWorkoutType = ["HealthKit_HKSampleType"]
HealthKit_all = ["HealthKit", "HealthKit_HKActivityMoveModeObject", "HealthKit_HKActivitySummary", "HealthKit_HKActivitySummaryQuery", "HealthKit_HKActivitySummaryType", "HealthKit_HKAnchoredObjectQuery", "HealthKit_HKAttachment", "HealthKit_HKAttachmentStore", "HealthKit_HKAudiogramSample", "HealthKit_HKAudiogramSampleType", "HealthKit_HKAudiogramSensitivityPoint", "HealthKit_HKBiologicalSexObject", "HealthKit_HKBloodTypeObject", "HealthKit_HKCDADocument", "HealthKit_HKCDADocumentSample", "HealthKit_HKCategorySample", "HealthKit_HKCategoryType", "HealthKit_HKCharacteristicType", "HealthKit_HKClinicalRecord", "HealthKit_HKClinicalType", "HealthKit_HKContactsLensSpecification", "HealthKit_HKContactsPrescription", "HealthKit_HKCorrelation", "HealthKit_HKCorrelationQuery", "HealthKit_HKCorrelationType", "HealthKit_HKCumulativeQuantitySample", "HealthKit_HKCumulativeQuantitySeriesSample", "HealthKit_HKDeletedObject", "HealthKit_HKDevice", "HealthKit_HKDiscreteQuantitySample", "HealthKit_HKDocumentQuery", "HealthKit_HKDocumentSample", "HealthKit_HKDocumentType", "HealthKit_HKElectrocardiogram", "HealthKit_HKElectrocardiogramQuery", "HealthKit_HKElectrocardiogramType", "HealthKit_HKElectrocardiogramVoltageMeasurement", "HealthKit_HKFHIRResource", "HealthKit_HKFHIRVersion", "HealthKit_HKFitzpatrickSkinTypeObject", "HealthKit_HKGlassesLensSpecification", "HealthKit_HKGlassesPrescription", "HealthKit_HKHealthStore", "HealthKit_HKHeartbeatSeriesBuilder", "HealthKit_HKHeartbeatSeriesQuery", "HealthKit_HKHeartbeatSeriesSample", "HealthKit_HKLensSpecification", "HealthKit_HKLiveWorkoutBuilder", "HealthKit_HKLiveWorkoutDataSource", "HealthKit_HKObject", "HealthKit_HKObjectType", "HealthKit_HKObserverQuery", "HealthKit_HKPrescriptionType", "HealthKit_HKQuantity", "HealthKit_HKQuantitySample", "HealthKit_HKQuantitySeriesSampleBuilder", "HealthKit_HKQuantitySeriesSampleQuery", "HealthKit_HKQuantityType", "HealthKit_HKQuery", "HealthKit_HKQueryAnchor", "HealthKit_HKQueryDescriptor", "HealthKit_HKSample", "HealthKit_HKSampleQuery", "HealthKit_HKSampleType", "HealthKit_HKSeriesBuilder", "HealthKit_HKSeriesSample", "HealthKit_HKSeriesType", "HealthKit_HKSource", "HealthKit_HKSourceQuery", "HealthKit_HKSourceRevision", "HealthKit_HKStatistics", "HealthKit_HKStatisticsCollection", "HealthKit_HKStatisticsCollectionQuery", "HealthKit_HKStatisticsQuery", "HealthKit_HKUnit", "HealthKit_HKVerifiableClinicalRecord", "HealthKit_HKVerifiableClinicalRecordQuery", "HealthKit_HKVerifiableClinicalRecordSubject", "HealthKit_HKVisionPrescription", "HealthKit_HKVisionPrism", "HealthKit_HKWheelchairUseObject", "HealthKit_HKWorkout", "HealthKit_HKWorkoutActivity", "HealthKit_HKWorkoutBuilder", "HealthKit_HKWorkoutConfiguration", "HealthKit_HKWorkoutEvent", "HealthKit_HKWorkoutRoute", "HealthKit_HKWorkoutRouteBuilder", "HealthKit_HKWorkoutRouteQuery", "HealthKit_HKWorkoutSession", "HealthKit_HKWorkoutType"]
IdentityLookup = ["Foundation"]
IdentityLookup_ILCallClassificationRequest = ["IdentityLookup_ILClassificationRequest"]
IdentityLookup_ILCallCommunication = ["IdentityLookup_ILCommunication"]
IdentityLookup_ILClassificationRequest = []
IdentityLookup_ILClassificationResponse = []
IdentityLookup_ILCommunication = []
IdentityLookup_ILMessageClassificationRequest = ["IdentityLookup_ILClassificationRequest"]
IdentityLookup_ILMessageCommunication = ["IdentityLookup_ILCommunication"]
IdentityLookup_ILMessageFilterCapabilitiesQueryRequest = []
IdentityLookup_ILMessageFilterCapabilitiesQueryResponse = []
IdentityLookup_ILMessageFilterExtension = []
IdentityLookup_ILMessageFilterExtensionContext = ["Foundation_NSExtensionContext"]
IdentityLookup_ILMessageFilterQueryRequest = []
IdentityLookup_ILMessageFilterQueryResponse = []
IdentityLookup_ILNetworkResponse = []
IdentityLookup_all = ["IdentityLookup", "IdentityLookup_ILCallClassificationRequest", "IdentityLookup_ILCallCommunication", "IdentityLookup_ILClassificationRequest", "IdentityLookup_ILClassificationResponse", "IdentityLookup_ILCommunication", "IdentityLookup_ILMessageClassificationRequest", "IdentityLookup_ILMessageCommunication", "IdentityLookup_ILMessageFilterCapabilitiesQueryRequest", "IdentityLookup_ILMessageFilterCapabilitiesQueryResponse", "IdentityLookup_ILMessageFilterExtension", "IdentityLookup_ILMessageFilterExtensionContext", "IdentityLookup_ILMessageFilterQueryRequest", "IdentityLookup_ILMessageFilterQueryResponse", "IdentityLookup_ILNetworkResponse"]
InputMethodKit = ["AppKit", "Foundation"]
InputMethodKit_IMKCandidates = ["AppKit_NSResponder"]
InputMethodKit_IMKInputController = []
InputMethodKit_IMKServer = []
InputMethodKit_all = ["InputMethodKit", "InputMethodKit_IMKCandidates", "InputMethodKit_IMKInputController", "InputMethodKit_IMKServer"]
LinkPresentation = ["AppKit", "Foundation"]
LinkPresentation_LPLinkMetadata = []
LinkPresentation_LPLinkView = ["AppKit_NSView"]
LinkPresentation_LPMetadataProvider = []
LinkPresentation_all = ["LinkPresentation", "LinkPresentation_LPLinkMetadata", "LinkPresentation_LPLinkView", "LinkPresentation_LPMetadataProvider"]
LocalAuthentication = ["Foundation"]
LocalAuthenticationEmbeddedUI = ["AppKit", "Foundation", "LocalAuthentication", "AppKit_NSWindow"]
LocalAuthenticationEmbeddedUI_LAAuthenticationView = ["AppKit_NSView"]
LocalAuthenticationEmbeddedUI_all = ["LocalAuthenticationEmbeddedUI", "LocalAuthenticationEmbeddedUI_LAAuthenticationView"]
LocalAuthentication_LAAuthenticationRequirement = []
LocalAuthentication_LABiometryFallbackRequirement = []
LocalAuthentication_LAContext = []
LocalAuthentication_LAPersistedRight = ["LocalAuthentication_LARight"]
LocalAuthentication_LAPrivateKey = []
LocalAuthentication_LAPublicKey = []
LocalAuthentication_LARight = []
LocalAuthentication_LARightStore = []
LocalAuthentication_LASecret = []
LocalAuthentication_all = ["LocalAuthentication", "LocalAuthentication_LAAuthenticationRequirement", "LocalAuthentication_LABiometryFallbackRequirement", "LocalAuthentication_LAContext", "LocalAuthentication_LAPersistedRight", "LocalAuthentication_LAPrivateKey", "LocalAuthentication_LAPublicKey", "LocalAuthentication_LARight", "LocalAuthentication_LARightStore", "LocalAuthentication_LASecret"]
MailKit = ["AppKit", "Foundation"]
MailKit_MEAddressAnnotation = []
MailKit_MEComposeContext = []
MailKit_MEComposeSession = []
MailKit_MEDecodedMessage = []
MailKit_MEDecodedMessageBanner = []
MailKit_MEEmailAddress = []
MailKit_MEEncodedOutgoingMessage = []
MailKit_MEExtensionManager = []
MailKit_MEExtensionViewController = ["AppKit_NSViewController"]
MailKit_MEMessage = []
MailKit_MEMessageAction = []
MailKit_MEMessageActionDecision = []
MailKit_MEMessageEncodingResult = []
MailKit_MEMessageSecurityInformation = []
MailKit_MEMessageSigner = []
MailKit_MEOutgoingMessageEncodingStatus = []
MailKit_all = ["MailKit", "MailKit_MEAddressAnnotation", "MailKit_MEComposeContext", "MailKit_MEComposeSession", "MailKit_MEDecodedMessage", "MailKit_MEDecodedMessageBanner", "MailKit_MEEmailAddress", "MailKit_MEEncodedOutgoingMessage", "MailKit_MEExtensionManager", "MailKit_MEExtensionViewController", "MailKit_MEMessage", "MailKit_MEMessageAction", "MailKit_MEMessageActionDecision", "MailKit_MEMessageEncodingResult", "MailKit_MEMessageSecurityInformation", "MailKit_MEMessageSigner", "MailKit_MEOutgoingMessageEncodingStatus"]
MapKit = ["AppKit", "Contacts", "CoreLocation", "Foundation", "MapKit_MKDirectionsResponse", "MapKit_MKETAResponse", "MapKit_MKLocalSearchResponse", "MapKit_MKMapSnapshot"]
MapKit_MKAnnotationView = ["AppKit_NSView"]
MapKit_MKCircle = ["MapKit_MKShape"]
MapKit_MKCircleRenderer = ["MapKit_MKOverlayPathRenderer"]
MapKit_MKClusterAnnotation = []
MapKit_MKCompassButton = ["AppKit_NSView"]
MapKit_MKDirections = []
MapKit_MKDirectionsRequest = []
MapKit_MKDirectionsResponse = []
MapKit_MKDistanceFormatter = ["Foundation_NSFormatter"]
MapKit_MKETAResponse = []
MapKit_MKGeoJSONDecoder = []
MapKit_MKGeoJSONFeature = []
MapKit_MKGeodesicPolyline = ["MapKit_MKPolyline"]
MapKit_MKGradientPolylineRenderer = ["MapKit_MKPolylineRenderer"]
MapKit_MKHybridMapConfiguration = ["MapKit_MKMapConfiguration"]
MapKit_MKImageryMapConfiguration = ["MapKit_MKMapConfiguration"]
MapKit_MKLocalPointsOfInterestRequest = []
MapKit_MKLocalSearch = []
MapKit_MKLocalSearchCompleter = []
MapKit_MKLocalSearchCompletion = []
MapKit_MKLocalSearchRequest = []
MapKit_MKLocalSearchResponse = []
MapKit_MKLookAroundScene = []
MapKit_MKLookAroundSceneRequest = []
MapKit_MKLookAroundSnapshot = []
MapKit_MKLookAroundSnapshotOptions = []
MapKit_MKLookAroundSnapshotter = []
MapKit_MKLookAroundViewController = ["AppKit_NSViewController"]
MapKit_MKMapCamera = []
MapKit_MKMapCameraBoundary = []
MapKit_MKMapCameraZoomRange = []
MapKit_MKMapConfiguration = []
MapKit_MKMapItem = []
MapKit_MKMapSnapshot = []
MapKit_MKMapSnapshotOptions = []
MapKit_MKMapSnapshotter = []
MapKit_MKMapView = ["AppKit_NSView"]
MapKit_MKMarkerAnnotationView = ["MapKit_MKAnnotationView"]
MapKit_MKMultiPoint = ["MapKit_MKShape"]
MapKit_MKMultiPolygon = ["MapKit_MKShape"]
MapKit_MKMultiPolygonRenderer = ["MapKit_MKOverlayPathRenderer"]
MapKit_MKMultiPolyline = ["MapKit_MKShape"]
MapKit_MKMultiPolylineRenderer = ["MapKit_MKOverlayPathRenderer"]
MapKit_MKOverlayPathRenderer = ["MapKit_MKOverlayRenderer"]
MapKit_MKOverlayRenderer = []
MapKit_MKPinAnnotationView = ["MapKit_MKAnnotationView"]
MapKit_MKPitchControl = ["AppKit_NSView"]
MapKit_MKPlacemark = ["CoreLocation_CLPlacemark"]
MapKit_MKPointAnnotation = ["MapKit_MKShape"]
MapKit_MKPointOfInterestFilter = []
MapKit_MKPolygon = ["MapKit_MKMultiPoint"]
MapKit_MKPolygonRenderer = ["MapKit_MKOverlayPathRenderer"]
MapKit_MKPolyline = ["MapKit_MKMultiPoint"]
MapKit_MKPolylineRenderer = ["MapKit_MKOverlayPathRenderer"]
MapKit_MKRoute = []
MapKit_MKRouteStep = []
MapKit_MKShape = []
MapKit_MKStandardMapConfiguration = ["MapKit_MKMapConfiguration"]
MapKit_MKTileOverlay = []
MapKit_MKTileOverlayRenderer = ["MapKit_MKOverlayRenderer"]
MapKit_MKUserLocation = []
MapKit_MKUserLocationView = ["MapKit_MKAnnotationView"]
MapKit_MKZoomControl = ["AppKit_NSView"]
MapKit_all = ["MapKit", "MapKit_MKAnnotationView", "MapKit_MKCircle", "MapKit_MKCircleRenderer", "MapKit_MKClusterAnnotation", "MapKit_MKCompassButton", "MapKit_MKDirections", "MapKit_MKDirectionsRequest", "MapKit_MKDirectionsResponse", "MapKit_MKDistanceFormatter", "MapKit_MKETAResponse", "MapKit_MKGeoJSONDecoder", "MapKit_MKGeoJSONFeature", "MapKit_MKGeodesicPolyline", "MapKit_MKGradientPolylineRenderer", "MapKit_MKHybridMapConfiguration", "MapKit_MKImageryMapConfiguration", "MapKit_MKLocalPointsOfInterestRequest", "MapKit_MKLocalSearch", "MapKit_MKLocalSearchCompleter", "MapKit_MKLocalSearchCompletion", "MapKit_MKLocalSearchRequest", "MapKit_MKLocalSearchResponse", "MapKit_MKLookAroundScene", "MapKit_MKLookAroundSceneRequest", "MapKit_MKLookAroundSnapshot", "MapKit_MKLookAroundSnapshotOptions", "MapKit_MKLookAroundSnapshotter", "MapKit_MKLookAroundViewController", "MapKit_MKMapCamera", "MapKit_MKMapCameraBoundary", "MapKit_MKMapCameraZoomRange", "MapKit_MKMapConfiguration", "MapKit_MKMapItem", "MapKit_MKMapSnapshot", "MapKit_MKMapSnapshotOptions", "MapKit_MKMapSnapshotter", "MapKit_MKMapView", "MapKit_MKMarkerAnnotationView", "MapKit_MKMultiPoint", "MapKit_MKMultiPolygon", "MapKit_MKMultiPolygonRenderer", "MapKit_MKMultiPolyline", "MapKit_MKMultiPolylineRenderer", "MapKit_MKOverlayPathRenderer", "MapKit_MKOverlayRenderer", "MapKit_MKPinAnnotationView", "MapKit_MKPitchControl", "MapKit_MKPlacemark", "MapKit_MKPointAnnotation", "MapKit_MKPointOfInterestFilter", "MapKit_MKPolygon", "MapKit_MKPolygonRenderer", "MapKit_MKPolyline", "MapKit_MKPolylineRenderer", "MapKit_MKRoute", "MapKit_MKRouteStep", "MapKit_MKShape", "MapKit_MKStandardMapConfiguration", "MapKit_MKTileOverlay", "MapKit_MKTileOverlayRenderer", "MapKit_MKUserLocation", "MapKit_MKUserLocationView", "MapKit_MKZoomControl"]
MediaPlayer = ["AppKit", "Foundation"]
MediaPlayer_MPAdTimeRange = []
MediaPlayer_MPChangeLanguageOptionCommandEvent = ["MediaPlayer_MPRemoteCommandEvent"]
MediaPlayer_MPChangePlaybackPositionCommand = ["MediaPlayer_MPRemoteCommand"]
MediaPlayer_MPChangePlaybackPositionCommandEvent = ["MediaPlayer_MPRemoteCommandEvent"]
MediaPlayer_MPChangePlaybackRateCommand = ["MediaPlayer_MPRemoteCommand"]
MediaPlayer_MPChangePlaybackRateCommandEvent = ["MediaPlayer_MPRemoteCommandEvent"]
MediaPlayer_MPChangeRepeatModeCommand = ["MediaPlayer_MPRemoteCommand"]
MediaPlayer_MPChangeRepeatModeCommandEvent = ["MediaPlayer_MPRemoteCommandEvent"]
MediaPlayer_MPChangeShuffleModeCommand = ["MediaPlayer_MPRemoteCommand"]
MediaPlayer_MPChangeShuffleModeCommandEvent = ["MediaPlayer_MPRemoteCommandEvent"]
MediaPlayer_MPContentItem = []
MediaPlayer_MPFeedbackCommand = ["MediaPlayer_MPRemoteCommand"]
MediaPlayer_MPFeedbackCommandEvent = ["MediaPlayer_MPRemoteCommandEvent"]
MediaPlayer_MPMediaEntity = []
MediaPlayer_MPMediaItem = ["MediaPlayer_MPMediaEntity"]
MediaPlayer_MPMediaItemArtwork = []
MediaPlayer_MPMediaItemCollection = ["MediaPlayer_MPMediaEntity"]
MediaPlayer_MPMediaLibrary = []
MediaPlayer_MPMediaPlaylist = ["MediaPlayer_MPMediaItemCollection"]
MediaPlayer_MPMediaPlaylistCreationMetadata = []
MediaPlayer_MPMediaPredicate = []
MediaPlayer_MPMediaPropertyPredicate = ["MediaPlayer_MPMediaPredicate"]
MediaPlayer_MPMediaQuery = []
MediaPlayer_MPMediaQuerySection = []
MediaPlayer_MPMusicPlayerApplicationController = ["MediaPlayer_MPMusicPlayerController"]
MediaPlayer_MPMusicPlayerController = []
MediaPlayer_MPMusicPlayerControllerMutableQueue = ["MediaPlayer_MPMusicPlayerControllerQueue"]
MediaPlayer_MPMusicPlayerControllerQueue = []
MediaPlayer_MPMusicPlayerMediaItemQueueDescriptor = ["MediaPlayer_MPMusicPlayerQueueDescriptor"]
MediaPlayer_MPMusicPlayerPlayParameters = []
MediaPlayer_MPMusicPlayerPlayParametersQueueDescriptor = ["MediaPlayer_MPMusicPlayerQueueDescriptor"]
MediaPlayer_MPMusicPlayerQueueDescriptor = []
MediaPlayer_MPMusicPlayerStoreQueueDescriptor = ["MediaPlayer_MPMusicPlayerQueueDescriptor"]
MediaPlayer_MPNowPlayingInfoCenter = []
MediaPlayer_MPNowPlayingInfoLanguageOption = []
MediaPlayer_MPNowPlayingInfoLanguageOptionGroup = []
MediaPlayer_MPNowPlayingSession = []
MediaPlayer_MPPlayableContentManager = []
MediaPlayer_MPPlayableContentManagerContext = []
MediaPlayer_MPRatingCommand = ["MediaPlayer_MPRemoteCommand"]
MediaPlayer_MPRatingCommandEvent = ["MediaPlayer_MPRemoteCommandEvent"]
MediaPlayer_MPRemoteCommand = []
MediaPlayer_MPRemoteCommandCenter = []
MediaPlayer_MPRemoteCommandEvent = []
MediaPlayer_MPSeekCommandEvent = ["MediaPlayer_MPRemoteCommandEvent"]
MediaPlayer_MPSkipIntervalCommand = ["MediaPlayer_MPRemoteCommand"]
MediaPlayer_MPSkipIntervalCommandEvent = ["MediaPlayer_MPRemoteCommandEvent"]
MediaPlayer_all = ["MediaPlayer", "MediaPlayer_MPAdTimeRange", "MediaPlayer_MPChangeLanguageOptionCommandEvent", "MediaPlayer_MPChangePlaybackPositionCommand", "MediaPlayer_MPChangePlaybackPositionCommandEvent", "MediaPlayer_MPChangePlaybackRateCommand", "MediaPlayer_MPChangePlaybackRateCommandEvent", "MediaPlayer_MPChangeRepeatModeCommand", "MediaPlayer_MPChangeRepeatModeCommandEvent", "MediaPlayer_MPChangeShuffleModeCommand", "MediaPlayer_MPChangeShuffleModeCommandEvent", "MediaPlayer_MPContentItem", "MediaPlayer_MPFeedbackCommand", "MediaPlayer_MPFeedbackCommandEvent", "MediaPlayer_MPMediaEntity", "MediaPlayer_MPMediaItem", "MediaPlayer_MPMediaItemArtwork", "MediaPlayer_MPMediaItemCollection", "MediaPlayer_MPMediaLibrary", "MediaPlayer_MPMediaPlaylist", "MediaPlayer_MPMediaPlaylistCreationMetadata", "MediaPlayer_MPMediaPredicate", "MediaPlayer_MPMediaPropertyPredicate", "MediaPlayer_MPMediaQuery", "MediaPlayer_MPMediaQuerySection", "MediaPlayer_MPMusicPlayerApplicationController", "MediaPlayer_MPMusicPlayerController", "MediaPlayer_MPMusicPlayerControllerMutableQueue", "MediaPlayer_MPMusicPlayerControllerQueue", "MediaPlayer_MPMusicPlayerMediaItemQueueDescriptor", "MediaPlayer_MPMusicPlayerPlayParameters", "MediaPlayer_MPMusicPlayerPlayParametersQueueDescriptor", "MediaPlayer_MPMusicPlayerQueueDescriptor", "MediaPlayer_MPMusicPlayerStoreQueueDescriptor", "MediaPlayer_MPNowPlayingInfoCenter", "MediaPlayer_MPNowPlayingInfoLanguageOption", "MediaPlayer_MPNowPlayingInfoLanguageOptionGroup", "MediaPlayer_MPNowPlayingSession", "MediaPlayer_MPPlayableContentManager", "MediaPlayer_MPPlayableContentManagerContext", "MediaPlayer_MPRatingCommand", "MediaPlayer_MPRatingCommandEvent", "MediaPlayer_MPRemoteCommand", "MediaPlayer_MPRemoteCommandCenter", "MediaPlayer_MPRemoteCommandEvent", "MediaPlayer_MPSeekCommandEvent", "MediaPlayer_MPSkipIntervalCommand", "MediaPlayer_MPSkipIntervalCommandEvent"]
Metal = ["Foundation"]
MetalFX = ["Foundation", "Metal"]
MetalFX_MTLFXSpatialScalerDescriptor = []
MetalFX_MTLFXTemporalScalerDescriptor = []
MetalFX_all = ["MetalFX", "MetalFX_MTLFXSpatialScalerDescriptor", "MetalFX_MTLFXTemporalScalerDescriptor"]
MetalKit = ["AppKit", "Foundation", "Metal", "Metal_MTLRenderPipelineReflection", "Metal_MTLComputePipelineReflection"]
MetalKit_MTKMesh = []
MetalKit_MTKMeshBuffer = []
MetalKit_MTKMeshBufferAllocator = []
MetalKit_MTKSubmesh = []
MetalKit_MTKTextureLoader = []
MetalKit_MTKView = ["AppKit_NSView"]
MetalKit_all = ["MetalKit", "MetalKit_MTKMesh", "MetalKit_MTKMeshBuffer", "MetalKit_MTKMeshBufferAllocator", "MetalKit_MTKSubmesh", "MetalKit_MTKTextureLoader", "MetalKit_MTKView"]
Metal_MTLAccelerationStructureBoundingBoxGeometryDescriptor = ["Metal_MTLAccelerationStructureGeometryDescriptor"]
Metal_MTLAccelerationStructureCurveGeometryDescriptor = ["Metal_MTLAccelerationStructureGeometryDescriptor"]
Metal_MTLAccelerationStructureDescriptor = []
Metal_MTLAccelerationStructureGeometryDescriptor = []
Metal_MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor = ["Metal_MTLAccelerationStructureGeometryDescriptor"]
Metal_MTLAccelerationStructureMotionCurveGeometryDescriptor = ["Metal_MTLAccelerationStructureGeometryDescriptor"]
Metal_MTLAccelerationStructureMotionTriangleGeometryDescriptor = ["Metal_MTLAccelerationStructureGeometryDescriptor"]
Metal_MTLAccelerationStructurePassDescriptor = []
Metal_MTLAccelerationStructurePassSampleBufferAttachmentDescriptor = []
Metal_MTLAccelerationStructurePassSampleBufferAttachmentDescriptorArray = []
Metal_MTLAccelerationStructureTriangleGeometryDescriptor = ["Metal_MTLAccelerationStructureGeometryDescriptor"]
Metal_MTLArchitecture = []
Metal_MTLArgument = []
Metal_MTLArgumentDescriptor = []
Metal_MTLArrayType = ["Metal_MTLType"]
Metal_MTLAttribute = []
Metal_MTLAttributeDescriptor = []
Metal_MTLAttributeDescriptorArray = []
Metal_MTLBinaryArchiveDescriptor = []
Metal_MTLBlitPassDescriptor = []
Metal_MTLBlitPassSampleBufferAttachmentDescriptor = []
Metal_MTLBlitPassSampleBufferAttachmentDescriptorArray = []
Metal_MTLBufferLayoutDescriptor = []
Metal_MTLBufferLayoutDescriptorArray = []
Metal_MTLCaptureDescriptor = []
Metal_MTLCaptureManager = []
Metal_MTLCommandBufferDescriptor = []
Metal_MTLCompileOptions = []
Metal_MTLComputePassDescriptor = []
Metal_MTLComputePassSampleBufferAttachmentDescriptor = []
Metal_MTLComputePassSampleBufferAttachmentDescriptorArray = []
Metal_MTLComputePipelineDescriptor = []
Metal_MTLComputePipelineReflection = []
Metal_MTLCounterSampleBufferDescriptor = []
Metal_MTLDepthStencilDescriptor = []
Metal_MTLFunctionConstant = []
Metal_MTLFunctionConstantValues = []
Metal_MTLFunctionDescriptor = []
Metal_MTLFunctionStitchingAttributeAlwaysInline = []
Metal_MTLFunctionStitchingFunctionNode = []
Metal_MTLFunctionStitchingGraph = []
Metal_MTLFunctionStitchingInputNode = []
Metal_MTLHeapDescriptor = []
Metal_MTLIOCommandQueueDescriptor = []
Metal_MTLIndirectCommandBufferDescriptor = []
Metal_MTLIndirectInstanceAccelerationStructureDescriptor = ["Metal_MTLAccelerationStructureDescriptor"]
Metal_MTLInstanceAccelerationStructureDescriptor = ["Metal_MTLAccelerationStructureDescriptor"]
Metal_MTLIntersectionFunctionDescriptor = ["Metal_MTLFunctionDescriptor"]
Metal_MTLIntersectionFunctionTableDescriptor = []
Metal_MTLLinkedFunctions = []
Metal_MTLMeshRenderPipelineDescriptor = []
Metal_MTLMotionKeyframeData = []
Metal_MTLPipelineBufferDescriptor = []
Metal_MTLPipelineBufferDescriptorArray = []
Metal_MTLPointerType = ["Metal_MTLType"]
Metal_MTLPrimitiveAccelerationStructureDescriptor = ["Metal_MTLAccelerationStructureDescriptor"]
Metal_MTLRasterizationRateLayerArray = []
Metal_MTLRasterizationRateLayerDescriptor = []
Metal_MTLRasterizationRateMapDescriptor = []
Metal_MTLRasterizationRateSampleArray = []
Metal_MTLRenderPassAttachmentDescriptor = []
Metal_MTLRenderPassColorAttachmentDescriptor = ["Metal_MTLRenderPassAttachmentDescriptor"]
Metal_MTLRenderPassColorAttachmentDescriptorArray = []
Metal_MTLRenderPassDepthAttachmentDescriptor = ["Metal_MTLRenderPassAttachmentDescriptor"]
Metal_MTLRenderPassDescriptor = []
Metal_MTLRenderPassSampleBufferAttachmentDescriptor = []
Metal_MTLRenderPassSampleBufferAttachmentDescriptorArray = []
Metal_MTLRenderPassStencilAttachmentDescriptor = ["Metal_MTLRenderPassAttachmentDescriptor"]
Metal_MTLRenderPipelineColorAttachmentDescriptor = []
Metal_MTLRenderPipelineColorAttachmentDescriptorArray = []
Metal_MTLRenderPipelineDescriptor = []
Metal_MTLRenderPipelineFunctionsDescriptor = []
Metal_MTLRenderPipelineReflection = []
Metal_MTLResourceStatePassDescriptor = []
Metal_MTLResourceStatePassSampleBufferAttachmentDescriptor = []
Metal_MTLResourceStatePassSampleBufferAttachmentDescriptorArray = []
Metal_MTLSamplerDescriptor = []
Metal_MTLSharedEventHandle = []
Metal_MTLSharedEventListener = []
Metal_MTLSharedTextureHandle = []
Metal_MTLStageInputOutputDescriptor = []
Metal_MTLStencilDescriptor = []
Metal_MTLStitchedLibraryDescriptor = []
Metal_MTLStructMember = []
Metal_MTLStructType = ["Metal_MTLType"]
Metal_MTLTextureDescriptor = []
Metal_MTLTextureReferenceType = ["Metal_MTLType"]
Metal_MTLTileRenderPipelineColorAttachmentDescriptor = []
Metal_MTLTileRenderPipelineColorAttachmentDescriptorArray = []
Metal_MTLTileRenderPipelineDescriptor = []
Metal_MTLType = []
Metal_MTLVertexAttribute = []
Metal_MTLVertexAttributeDescriptor = []
Metal_MTLVertexAttributeDescriptorArray = []
Metal_MTLVertexBufferLayoutDescriptor = []
Metal_MTLVertexBufferLayoutDescriptorArray = []
Metal_MTLVertexDescriptor = []
Metal_MTLVisibleFunctionTableDescriptor = []
Metal_all = ["Metal", "Metal_MTLAccelerationStructureBoundingBoxGeometryDescriptor", "Metal_MTLAccelerationStructureCurveGeometryDescriptor", "Metal_MTLAccelerationStructureDescriptor", "Metal_MTLAccelerationStructureGeometryDescriptor", "Metal_MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor", "Metal_MTLAccelerationStructureMotionCurveGeometryDescriptor", "Metal_MTLAccelerationStructureMotionTriangleGeometryDescriptor", "Metal_MTLAccelerationStructurePassDescriptor", "Metal_MTLAccelerationStructurePassSampleBufferAttachmentDescriptor", "Metal_MTLAccelerationStructurePassSampleBufferAttachmentDescriptorArray", "Metal_MTLAccelerationStructureTriangleGeometryDescriptor", "Metal_MTLArchitecture", "Metal_MTLArgument", "Metal_MTLArgumentDescriptor", "Metal_MTLArrayType", "Metal_MTLAttribute", "Metal_MTLAttributeDescriptor", "Metal_MTLAttributeDescriptorArray", "Metal_MTLBinaryArchiveDescriptor", "Metal_MTLBlitPassDescriptor", "Metal_MTLBlitPassSampleBufferAttachmentDescriptor", "Metal_MTLBlitPassSampleBufferAttachmentDescriptorArray", "Metal_MTLBufferLayoutDescriptor", "Metal_MTLBufferLayoutDescriptorArray", "Metal_MTLCaptureDescriptor", "Metal_MTLCaptureManager", "Metal_MTLCommandBufferDescriptor", "Metal_MTLCompileOptions", "Metal_MTLComputePassDescriptor", "Metal_MTLComputePassSampleBufferAttachmentDescriptor", "Metal_MTLComputePassSampleBufferAttachmentDescriptorArray", "Metal_MTLComputePipelineDescriptor", "Metal_MTLComputePipelineReflection", "Metal_MTLCounterSampleBufferDescriptor", "Metal_MTLDepthStencilDescriptor", "Metal_MTLFunctionConstant", "Metal_MTLFunctionConstantValues", "Metal_MTLFunctionDescriptor", "Metal_MTLFunctionStitchingAttributeAlwaysInline", "Metal_MTLFunctionStitchingFunctionNode", "Metal_MTLFunctionStitchingGraph", "Metal_MTLFunctionStitchingInputNode", "Metal_MTLHeapDescriptor", "Metal_MTLIOCommandQueueDescriptor", "Metal_MTLIndirectCommandBufferDescriptor", "Metal_MTLIndirectInstanceAccelerationStructureDescriptor", "Metal_MTLInstanceAccelerationStructureDescriptor", "Metal_MTLIntersectionFunctionDescriptor", "Metal_MTLIntersectionFunctionTableDescriptor", "Metal_MTLLinkedFunctions", "Metal_MTLMeshRenderPipelineDescriptor", "Metal_MTLMotionKeyframeData", "Metal_MTLPipelineBufferDescriptor", "Metal_MTLPipelineBufferDescriptorArray", "Metal_MTLPointerType", "Metal_MTLPrimitiveAccelerationStructureDescriptor", "Metal_MTLRasterizationRateLayerArray", "Metal_MTLRasterizationRateLayerDescriptor", "Metal_MTLRasterizationRateMapDescriptor", "Metal_MTLRasterizationRateSampleArray", "Metal_MTLRenderPassAttachmentDescriptor", "Metal_MTLRenderPassColorAttachmentDescriptor", "Metal_MTLRenderPassColorAttachmentDescriptorArray", "Metal_MTLRenderPassDepthAttachmentDescriptor", "Metal_MTLRenderPassDescriptor", "Metal_MTLRenderPassSampleBufferAttachmentDescriptor", "Metal_MTLRenderPassSampleBufferAttachmentDescriptorArray", "Metal_MTLRenderPassStencilAttachmentDescriptor", "Metal_MTLRenderPipelineColorAttachmentDescriptor", "Metal_MTLRenderPipelineColorAttachmentDescriptorArray", "Metal_MTLRenderPipelineDescriptor", "Metal_MTLRenderPipelineFunctionsDescriptor", "Metal_MTLRenderPipelineReflection", "Metal_MTLResourceStatePassDescriptor", "Metal_MTLResourceStatePassSampleBufferAttachmentDescriptor", "Metal_MTLResourceStatePassSampleBufferAttachmentDescriptorArray", "Metal_MTLSamplerDescriptor", "Metal_MTLSharedEventHandle", "Metal_MTLSharedEventListener", "Metal_MTLSharedTextureHandle", "Metal_MTLStageInputOutputDescriptor", "Metal_MTLStencilDescriptor", "Metal_MTLStitchedLibraryDescriptor", "Metal_MTLStructMember", "Metal_MTLStructType", "Metal_MTLTextureDescriptor", "Metal_MTLTextureReferenceType", "Metal_MTLTileRenderPipelineColorAttachmentDescriptor", "Metal_MTLTileRenderPipelineColorAttachmentDescriptorArray", "Metal_MTLTileRenderPipelineDescriptor", "Metal_MTLType", "Metal_MTLVertexAttribute", "Metal_MTLVertexAttributeDescriptor", "Metal_MTLVertexAttributeDescriptorArray", "Metal_MTLVertexBufferLayoutDescriptor", "Metal_MTLVertexBufferLayoutDescriptorArray", "Metal_MTLVertexDescriptor", "Metal_MTLVisibleFunctionTableDescriptor"]
MetricKit = ["Foundation"]
MetricKit_MXAnimationMetric = ["MetricKit_MXMetric"]
MetricKit_MXAppExitMetric = ["MetricKit_MXMetric"]
MetricKit_MXAppLaunchDiagnostic = ["MetricKit_MXDiagnostic"]
MetricKit_MXAppLaunchMetric = ["MetricKit_MXMetric"]
MetricKit_MXAppResponsivenessMetric = ["MetricKit_MXMetric"]
MetricKit_MXAppRunTimeMetric = ["MetricKit_MXMetric"]
MetricKit_MXAverage = []
MetricKit_MXBackgroundExitData = []
MetricKit_MXCPUExceptionDiagnostic = ["MetricKit_MXDiagnostic"]
MetricKit_MXCPUMetric = ["MetricKit_MXMetric"]
MetricKit_MXCallStackTree = []
MetricKit_MXCellularConditionMetric = ["MetricKit_MXMetric"]
MetricKit_MXCrashDiagnostic = ["MetricKit_MXDiagnostic"]
MetricKit_MXCrashDiagnosticObjectiveCExceptionReason = []
MetricKit_MXDiagnostic = []
MetricKit_MXDiagnosticPayload = []
MetricKit_MXDiskIOMetric = ["MetricKit_MXMetric"]
MetricKit_MXDiskWriteExceptionDiagnostic = ["MetricKit_MXDiagnostic"]
MetricKit_MXDisplayMetric = ["MetricKit_MXMetric"]
MetricKit_MXForegroundExitData = []
MetricKit_MXGPUMetric = ["MetricKit_MXMetric"]
MetricKit_MXHangDiagnostic = ["MetricKit_MXDiagnostic"]
MetricKit_MXHistogram = []
MetricKit_MXHistogramBucket = []
MetricKit_MXLocationActivityMetric = ["MetricKit_MXMetric"]
MetricKit_MXMemoryMetric = ["MetricKit_MXMetric"]
MetricKit_MXMetaData = []
MetricKit_MXMetric = []
MetricKit_MXMetricManager = []
MetricKit_MXMetricPayload = []
MetricKit_MXNetworkTransferMetric = ["MetricKit_MXMetric"]
MetricKit_MXSignpostIntervalData = []
MetricKit_MXSignpostMetric = ["MetricKit_MXMetric"]
MetricKit_MXSignpostRecord = []
MetricKit_MXUnitAveragePixelLuminance = ["Foundation_NSDimension"]
MetricKit_MXUnitSignalBars = ["Foundation_NSDimension"]
MetricKit_all = ["MetricKit", "MetricKit_MXAnimationMetric", "MetricKit_MXAppExitMetric", "MetricKit_MXAppLaunchDiagnostic", "MetricKit_MXAppLaunchMetric", "MetricKit_MXAppResponsivenessMetric", "MetricKit_MXAppRunTimeMetric", "MetricKit_MXAverage", "MetricKit_MXBackgroundExitData", "MetricKit_MXCPUExceptionDiagnostic", "MetricKit_MXCPUMetric", "MetricKit_MXCallStackTree", "MetricKit_MXCellularConditionMetric", "MetricKit_MXCrashDiagnostic", "MetricKit_MXCrashDiagnosticObjectiveCExceptionReason", "MetricKit_MXDiagnostic", "MetricKit_MXDiagnosticPayload", "MetricKit_MXDiskIOMetric", "MetricKit_MXDiskWriteExceptionDiagnostic", "MetricKit_MXDisplayMetric", "MetricKit_MXForegroundExitData", "MetricKit_MXGPUMetric", "MetricKit_MXHangDiagnostic", "MetricKit_MXHistogram", "MetricKit_MXHistogramBucket", "MetricKit_MXLocationActivityMetric", "MetricKit_MXMemoryMetric", "MetricKit_MXMetaData", "MetricKit_MXMetric", "MetricKit_MXMetricManager", "MetricKit_MXMetricPayload", "MetricKit_MXNetworkTransferMetric", "MetricKit_MXSignpostIntervalData", "MetricKit_MXSignpostMetric", "MetricKit_MXSignpostRecord", "MetricKit_MXUnitAveragePixelLuminance", "MetricKit_MXUnitSignalBars"]
OSAKit = ["AppKit", "Foundation"]
OSAKit_OSALanguage = []
OSAKit_OSALanguageInstance = []
OSAKit_OSAScript = []
OSAKit_OSAScriptController = ["AppKit_NSController"]
OSAKit_OSAScriptView = ["AppKit_NSTextView"]
OSAKit_all = ["OSAKit", "OSAKit_OSALanguage", "OSAKit_OSALanguageInstance", "OSAKit_OSAScript", "OSAKit_OSAScriptController", "OSAKit_OSAScriptView"]
PhotoKit = ["AppKit", "CoreLocation", "Foundation"]
PhotoKit_PHAdjustmentData = []
PhotoKit_PHAsset = ["PhotoKit_PHObject"]
PhotoKit_PHAssetChangeRequest = ["PhotoKit_PHChangeRequest"]
PhotoKit_PHAssetCollection = ["PhotoKit_PHCollection"]
PhotoKit_PHAssetCollectionChangeRequest = ["PhotoKit_PHChangeRequest"]
PhotoKit_PHAssetCreationRequest = ["PhotoKit_PHAssetChangeRequest"]
PhotoKit_PHAssetResource = []
PhotoKit_PHAssetResourceCreationOptions = []
PhotoKit_PHAssetResourceManager = []
PhotoKit_PHAssetResourceRequestOptions = []
PhotoKit_PHCachingImageManager = ["PhotoKit_PHImageManager"]
PhotoKit_PHChange = []
PhotoKit_PHChangeRequest = []
PhotoKit_PHCloudIdentifier = []
PhotoKit_PHCloudIdentifierMapping = []
PhotoKit_PHCollection = ["PhotoKit_PHObject"]
PhotoKit_PHCollectionList = ["PhotoKit_PHCollection"]
PhotoKit_PHCollectionListChangeRequest = ["PhotoKit_PHChangeRequest"]
PhotoKit_PHContentEditingInput = []
PhotoKit_PHContentEditingInputRequestOptions = []
PhotoKit_PHContentEditingOutput = []
PhotoKit_PHFetchOptions = []
PhotoKit_PHFetchResult = []
PhotoKit_PHFetchResultChangeDetails = []
PhotoKit_PHImageManager = []
PhotoKit_PHImageRequestOptions = []
PhotoKit_PHLivePhoto = []
PhotoKit_PHLivePhotoEditingContext = []
PhotoKit_PHLivePhotoRequestOptions = []
PhotoKit_PHLocalIdentifierMapping = []
PhotoKit_PHObject = []
PhotoKit_PHObjectChangeDetails = []
PhotoKit_PHObjectPlaceholder = ["PhotoKit_PHObject"]
PhotoKit_PHPersistentChange = []
PhotoKit_PHPersistentChangeFetchResult = []
PhotoKit_PHPersistentChangeToken = []
PhotoKit_PHPersistentObjectChangeDetails = []
PhotoKit_PHPhotoLibrary = []
PhotoKit_PHProject = ["PhotoKit_PHAssetCollection"]
PhotoKit_PHProjectChangeRequest = ["PhotoKit_PHChangeRequest"]
PhotoKit_PHVideoRequestOptions = []
PhotoKit_all = ["PhotoKit", "PhotoKit_PHAdjustmentData", "PhotoKit_PHAsset", "PhotoKit_PHAssetChangeRequest", "PhotoKit_PHAssetCollection", "PhotoKit_PHAssetCollectionChangeRequest", "PhotoKit_PHAssetCreationRequest", "PhotoKit_PHAssetResource", "PhotoKit_PHAssetResourceCreationOptions", "PhotoKit_PHAssetResourceManager", "PhotoKit_PHAssetResourceRequestOptions", "PhotoKit_PHCachingImageManager", "PhotoKit_PHChange", "PhotoKit_PHChangeRequest", "PhotoKit_PHCloudIdentifier", "PhotoKit_PHCloudIdentifierMapping", "PhotoKit_PHCollection", "PhotoKit_PHCollectionList", "PhotoKit_PHCollectionListChangeRequest", "PhotoKit_PHContentEditingInput", "PhotoKit_PHContentEditingInputRequestOptions", "PhotoKit_PHContentEditingOutput", "PhotoKit_PHFetchOptions", "PhotoKit_PHFetchResult", "PhotoKit_PHFetchResultChangeDetails", "PhotoKit_PHImageManager", "PhotoKit_PHImageRequestOptions", "PhotoKit_PHLivePhoto", "PhotoKit_PHLivePhotoEditingContext", "PhotoKit_PHLivePhotoRequestOptions", "PhotoKit_PHLocalIdentifierMapping", "PhotoKit_PHObject", "PhotoKit_PHObjectChangeDetails", "PhotoKit_PHObjectPlaceholder", "PhotoKit_PHPersistentChange", "PhotoKit_PHPersistentChangeFetchResult", "PhotoKit_PHPersistentChangeToken", "PhotoKit_PHPersistentObjectChangeDetails", "PhotoKit_PHPhotoLibrary", "PhotoKit_PHProject", "PhotoKit_PHProjectChangeRequest", "PhotoKit_PHVideoRequestOptions"]
SoundAnalysis = ["Foundation"]
SoundAnalysis_SNAudioFileAnalyzer = []
SoundAnalysis_SNAudioStreamAnalyzer = []
SoundAnalysis_SNClassification = []
SoundAnalysis_SNClassificationResult = []
SoundAnalysis_SNClassifySoundRequest = []
SoundAnalysis_SNTimeDurationConstraint = []
SoundAnalysis_all = ["SoundAnalysis", "SoundAnalysis_SNAudioFileAnalyzer", "SoundAnalysis_SNAudioStreamAnalyzer", "SoundAnalysis_SNClassification", "SoundAnalysis_SNClassificationResult", "SoundAnalysis_SNClassifySoundRequest", "SoundAnalysis_SNTimeDurationConstraint"]
Speech = ["Foundation"]
Speech_SFAcousticFeature = []
Speech_SFSpeechAudioBufferRecognitionRequest = ["Speech_SFSpeechRecognitionRequest"]
Speech_SFSpeechLanguageModel = []
Speech_SFSpeechLanguageModelConfiguration = []
Speech_SFSpeechRecognitionMetadata = []
Speech_SFSpeechRecognitionRequest = []
Speech_SFSpeechRecognitionResult = []
Speech_SFSpeechRecognitionTask = []
Speech_SFSpeechRecognizer = []
Speech_SFSpeechURLRecognitionRequest = ["Speech_SFSpeechRecognitionRequest"]
Speech_SFTranscription = []
Speech_SFTranscriptionSegment = []
Speech_SFVoiceAnalytics = []
Speech__SFAnalysisContext = []
Speech__SFAnalyzerTranscriptionSegment = []
Speech__SFCommandRecognizerArgument = []
Speech__SFCommandRecognizerInterpretation = []
Speech__SFContextualNamedEntity = []
Speech__SFEndpointingResult = []
Speech__SFInputSequencer = []
Speech__SFModelDownloadRequest = []
Speech__SFSpeechAnalyzer = []
Speech__SFSpeechAnalyzerCommandRecognizerOptions = []
Speech__SFSpeechAnalyzerOptions = []
Speech__SFSpeechAnalyzerOptionsLoggingInfo = []
Speech__SFSpeechAnalyzerOptionsPowerContext = []
Speech__SFSpeechAnalyzerTranscriberOptions = []
Speech__SFToken = []
Speech__SFTranscriberModelOptions = []
Speech__SFTranscriberResult = []
Speech__STCommandRecognizerResult = []
Speech__STTranscriberMultisegmentResult = []
Speech_all = ["Speech", "Speech_SFAcousticFeature", "Speech_SFSpeechAudioBufferRecognitionRequest", "Speech_SFSpeechLanguageModel", "Speech_SFSpeechLanguageModelConfiguration", "Speech_SFSpeechRecognitionMetadata", "Speech_SFSpeechRecognitionRequest", "Speech_SFSpeechRecognitionResult", "Speech_SFSpeechRecognitionTask", "Speech_SFSpeechRecognizer", "Speech_SFSpeechURLRecognitionRequest", "Speech_SFTranscription", "Speech_SFTranscriptionSegment", "Speech_SFVoiceAnalytics", "Speech__SFAnalysisContext", "Speech__SFAnalyzerTranscriptionSegment", "Speech__SFCommandRecognizerArgument", "Speech__SFCommandRecognizerInterpretation", "Speech__SFContextualNamedEntity", "Speech__SFEndpointingResult", "Speech__SFInputSequencer", "Speech__SFModelDownloadRequest", "Speech__SFSpeechAnalyzer", "Speech__SFSpeechAnalyzerCommandRecognizerOptions", "Speech__SFSpeechAnalyzerOptions", "Speech__SFSpeechAnalyzerOptionsLoggingInfo", "Speech__SFSpeechAnalyzerOptionsPowerContext", "Speech__SFSpeechAnalyzerTranscriberOptions", "Speech__SFToken", "Speech__SFTranscriberModelOptions", "Speech__SFTranscriberResult", "Speech__STCommandRecognizerResult", "Speech__STTranscriberMultisegmentResult"]
StoreKit = ["AppKit", "Foundation"]
StoreKit_SKAdImpression = []
StoreKit_SKAdNetwork = []
StoreKit_SKArcadeService = []
StoreKit_SKCloudServiceController = []
StoreKit_SKCloudServiceSetupViewController = ["AppKit_NSViewController"]
StoreKit_SKDownload = []
StoreKit_SKMutablePayment = ["StoreKit_SKPayment"]
StoreKit_SKOverlay = []
StoreKit_SKOverlayAppClipConfiguration = ["StoreKit_SKOverlayConfiguration"]
StoreKit_SKOverlayAppConfiguration = ["StoreKit_SKOverlayConfiguration"]
StoreKit_SKOverlayConfiguration = []
StoreKit_SKOverlayTransitionContext = []
StoreKit_SKPayment = []
StoreKit_SKPaymentDiscount = []
StoreKit_SKPaymentQueue = []
StoreKit_SKPaymentTransaction = []
StoreKit_SKProduct = []
StoreKit_SKProductDiscount = []
StoreKit_SKProductStorePromotionController = []
StoreKit_SKProductSubscriptionPeriod = []
StoreKit_SKProductsRequest = ["StoreKit_SKRequest"]
StoreKit_SKProductsResponse = []
StoreKit_SKReceiptRefreshRequest = ["StoreKit_SKRequest"]
StoreKit_SKRequest = []
StoreKit_SKStoreProductViewController = ["AppKit_NSViewController"]
StoreKit_SKStoreReviewController = []
StoreKit_SKStorefront = []
StoreKit_all = ["StoreKit", "StoreKit_SKAdImpression", "StoreKit_SKAdNetwork", "StoreKit_SKArcadeService", "StoreKit_SKCloudServiceController", "StoreKit_SKCloudServiceSetupViewController", "StoreKit_SKDownload", "StoreKit_SKMutablePayment", "StoreKit_SKOverlay", "StoreKit_SKOverlayAppClipConfiguration", "StoreKit_SKOverlayAppConfiguration", "StoreKit_SKOverlayConfiguration", "StoreKit_SKOverlayTransitionContext", "StoreKit_SKPayment", "StoreKit_SKPaymentDiscount", "StoreKit_SKPaymentQueue", "StoreKit_SKPaymentTransaction", "StoreKit_SKProduct", "StoreKit_SKProductDiscount", "StoreKit_SKProductStorePromotionController", "StoreKit_SKProductSubscriptionPeriod", "StoreKit_SKProductsRequest", "StoreKit_SKProductsResponse", "StoreKit_SKReceiptRefreshRequest", "StoreKit_SKRequest", "StoreKit_SKStoreProductViewController", "StoreKit_SKStoreReviewController", "StoreKit_SKStorefront"]
UniformTypeIdentifiers = ["Foundation", "UniformTypeIdentifiers_UTType"]
UniformTypeIdentifiers_UTType = []
UniformTypeIdentifiers_all = ["UniformTypeIdentifiers", "UniformTypeIdentifiers_UTType"]
UserNotifications = ["CoreLocation", "Foundation"]
UserNotifications_UNCalendarNotificationTrigger = ["UserNotifications_UNNotificationTrigger"]
UserNotifications_UNLocationNotificationTrigger = ["UserNotifications_UNNotificationTrigger"]
UserNotifications_UNMutableNotificationContent = ["UserNotifications_UNNotificationContent"]
UserNotifications_UNNotification = []
UserNotifications_UNNotificationAction = []
UserNotifications_UNNotificationActionIcon = []
UserNotifications_UNNotificationAttachment = []
UserNotifications_UNNotificationCategory = []
UserNotifications_UNNotificationContent = []
UserNotifications_UNNotificationRequest = []
UserNotifications_UNNotificationResponse = []
UserNotifications_UNNotificationServiceExtension = []
UserNotifications_UNNotificationSettings = []
UserNotifications_UNNotificationSound = []
UserNotifications_UNNotificationTrigger = []
UserNotifications_UNPushNotificationTrigger = ["UserNotifications_UNNotificationTrigger"]
UserNotifications_UNTextInputNotificationAction = ["UserNotifications_UNNotificationAction"]
UserNotifications_UNTextInputNotificationResponse = ["UserNotifications_UNNotificationResponse"]
UserNotifications_UNTimeIntervalNotificationTrigger = ["UserNotifications_UNNotificationTrigger"]
UserNotifications_UNUserNotificationCenter = []
UserNotifications_all = ["UserNotifications", "UserNotifications_UNCalendarNotificationTrigger", "UserNotifications_UNLocationNotificationTrigger", "UserNotifications_UNMutableNotificationContent", "UserNotifications_UNNotification", "UserNotifications_UNNotificationAction", "UserNotifications_UNNotificationActionIcon", "UserNotifications_UNNotificationAttachment", "UserNotifications_UNNotificationCategory", "UserNotifications_UNNotificationContent", "UserNotifications_UNNotificationRequest", "UserNotifications_UNNotificationResponse", "UserNotifications_UNNotificationServiceExtension", "UserNotifications_UNNotificationSettings", "UserNotifications_UNNotificationSound", "UserNotifications_UNNotificationTrigger", "UserNotifications_UNPushNotificationTrigger", "UserNotifications_UNTextInputNotificationAction", "UserNotifications_UNTextInputNotificationResponse", "UserNotifications_UNTimeIntervalNotificationTrigger", "UserNotifications_UNUserNotificationCenter"]
WebKit = ["AppKit", "Foundation", "Foundation_NSAttributedString"]
WebKit_DOMAbstractView = ["WebKit_DOMObject"]
WebKit_DOMAttr = ["WebKit_DOMNode"]
WebKit_DOMBlob = ["WebKit_DOMObject"]
WebKit_DOMCDATASection = ["WebKit_DOMText"]
WebKit_DOMCSSCharsetRule = ["WebKit_DOMCSSRule"]
WebKit_DOMCSSFontFaceRule = ["WebKit_DOMCSSRule"]
WebKit_DOMCSSImportRule = ["WebKit_DOMCSSRule"]
WebKit_DOMCSSMediaRule = ["WebKit_DOMCSSRule"]
WebKit_DOMCSSPageRule = ["WebKit_DOMCSSRule"]
WebKit_DOMCSSPrimitiveValue = ["WebKit_DOMCSSValue"]
WebKit_DOMCSSRule = ["WebKit_DOMObject"]
WebKit_DOMCSSRuleList = ["WebKit_DOMObject"]
WebKit_DOMCSSStyleDeclaration = ["WebKit_DOMObject"]
WebKit_DOMCSSStyleRule = ["WebKit_DOMCSSRule"]
WebKit_DOMCSSStyleSheet = ["WebKit_DOMStyleSheet"]
WebKit_DOMCSSUnknownRule = ["WebKit_DOMCSSRule"]
WebKit_DOMCSSValue = ["WebKit_DOMObject"]
WebKit_DOMCSSValueList = ["WebKit_DOMCSSValue"]
WebKit_DOMCharacterData = ["WebKit_DOMNode"]
WebKit_DOMComment = ["WebKit_DOMCharacterData"]
WebKit_DOMCounter = ["WebKit_DOMObject"]
WebKit_DOMDocument = ["WebKit_DOMNode"]
WebKit_DOMDocumentFragment = ["WebKit_DOMNode"]
WebKit_DOMDocumentType = ["WebKit_DOMNode"]
WebKit_DOMElement = ["WebKit_DOMNode"]
WebKit_DOMEntity = ["WebKit_DOMNode"]
WebKit_DOMEntityReference = ["WebKit_DOMNode"]
WebKit_DOMEvent = ["WebKit_DOMObject"]
WebKit_DOMFile = ["WebKit_DOMBlob"]
WebKit_DOMFileList = ["WebKit_DOMObject"]
WebKit_DOMHTMLAnchorElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLAppletElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLAreaElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLBRElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLBaseElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLBaseFontElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLBodyElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLButtonElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLCollection = ["WebKit_DOMObject"]
WebKit_DOMHTMLDListElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLDirectoryElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLDivElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLDocument = ["WebKit_DOMDocument"]
WebKit_DOMHTMLElement = ["WebKit_DOMElement"]
WebKit_DOMHTMLEmbedElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLFieldSetElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLFontElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLFormElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLFrameElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLFrameSetElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLHRElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLHeadElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLHeadingElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLHtmlElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLIFrameElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLImageElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLInputElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLLIElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLLabelElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLLegendElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLLinkElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLMapElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLMarqueeElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLMenuElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLMetaElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLModElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLOListElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLObjectElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLOptGroupElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLOptionElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLOptionsCollection = ["WebKit_DOMObject"]
WebKit_DOMHTMLParagraphElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLParamElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLPreElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLQuoteElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLScriptElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLSelectElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLStyleElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLTableCaptionElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLTableCellElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLTableColElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLTableElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLTableRowElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLTableSectionElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLTextAreaElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLTitleElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMHTMLUListElement = ["WebKit_DOMHTMLElement"]
WebKit_DOMImplementation = ["WebKit_DOMObject"]
WebKit_DOMKeyboardEvent = ["WebKit_DOMUIEvent"]
WebKit_DOMMediaList = ["WebKit_DOMObject"]
WebKit_DOMMouseEvent = ["WebKit_DOMUIEvent"]
WebKit_DOMMutationEvent = ["WebKit_DOMEvent"]
WebKit_DOMNamedNodeMap = ["WebKit_DOMObject"]
WebKit_DOMNode = ["WebKit_DOMObject"]
WebKit_DOMNodeIterator = ["WebKit_DOMObject"]
WebKit_DOMNodeList = ["WebKit_DOMObject"]
WebKit_DOMObject = ["WebKit_WebScriptObject"]
WebKit_DOMOverflowEvent = ["WebKit_DOMEvent"]
WebKit_DOMProcessingInstruction = ["WebKit_DOMCharacterData"]
WebKit_DOMProgressEvent = ["WebKit_DOMEvent"]
WebKit_DOMRGBColor = ["WebKit_DOMObject"]
WebKit_DOMRange = ["WebKit_DOMObject"]
WebKit_DOMRect = ["WebKit_DOMObject"]
WebKit_DOMStyleSheet = ["WebKit_DOMObject"]
WebKit_DOMStyleSheetList = ["WebKit_DOMObject"]
WebKit_DOMText = ["WebKit_DOMCharacterData"]
WebKit_DOMTreeWalker = ["WebKit_DOMObject"]
WebKit_DOMUIEvent = ["WebKit_DOMEvent"]
WebKit_DOMWheelEvent = ["WebKit_DOMMouseEvent"]
WebKit_DOMXPathExpression = ["WebKit_DOMObject"]
WebKit_DOMXPathResult = ["WebKit_DOMObject"]
WebKit_WKBackForwardList = []
WebKit_WKBackForwardListItem = []
WebKit_WKContentRuleList = []
WebKit_WKContentRuleListStore = []
WebKit_WKContentWorld = []
WebKit_WKDownload = []
WebKit_WKFindConfiguration = []
WebKit_WKFindResult = []
WebKit_WKFrameInfo = []
WebKit_WKHTTPCookieStore = []
WebKit_WKNavigation = []
WebKit_WKNavigationAction = []
WebKit_WKNavigationResponse = []
WebKit_WKOpenPanelParameters = []
WebKit_WKPDFConfiguration = []
WebKit_WKPreferences = []
WebKit_WKProcessPool = []
WebKit_WKScriptMessage = []
WebKit_WKSecurityOrigin = []
WebKit_WKSnapshotConfiguration = []
WebKit_WKUserContentController = []
WebKit_WKUserScript = []
WebKit_WKWebView = ["AppKit_NSView"]
WebKit_WKWebViewConfiguration = []
WebKit_WKWebpagePreferences = []
WebKit_WKWebsiteDataRecord = []
WebKit_WKWebsiteDataStore = []
WebKit_WKWindowFeatures = []
WebKit_WebArchive = []
WebKit_WebBackForwardList = []
WebKit_WebDataSource = []
WebKit_WebDownload = ["Foundation_NSURLDownload"]
WebKit_WebFrame = []
WebKit_WebFrameView = ["AppKit_NSView"]
WebKit_WebHistory = []
WebKit_WebHistoryItem = []
WebKit_WebPreferences = []
WebKit_WebResource = []
WebKit_WebScriptObject = []
WebKit_WebUndefined = []
WebKit_WebView = ["AppKit_NSView"]
WebKit_all = ["WebKit", "WebKit_DOMAbstractView", "WebKit_DOMAttr", "WebKit_DOMBlob", "WebKit_DOMCDATASection", "WebKit_DOMCSSCharsetRule", "WebKit_DOMCSSFontFaceRule", "WebKit_DOMCSSImportRule", "WebKit_DOMCSSMediaRule", "WebKit_DOMCSSPageRule", "WebKit_DOMCSSPrimitiveValue", "WebKit_DOMCSSRule", "WebKit_DOMCSSRuleList", "WebKit_DOMCSSStyleDeclaration", "WebKit_DOMCSSStyleRule", "WebKit_DOMCSSStyleSheet", "WebKit_DOMCSSUnknownRule", "WebKit_DOMCSSValue", "WebKit_DOMCSSValueList", "WebKit_DOMCharacterData", "WebKit_DOMComment", "WebKit_DOMCounter", "WebKit_DOMDocument", "WebKit_DOMDocumentFragment", "WebKit_DOMDocumentType", "WebKit_DOMElement", "WebKit_DOMEntity", "WebKit_DOMEntityReference", "WebKit_DOMEvent", "WebKit_DOMFile", "WebKit_DOMFileList", "WebKit_DOMHTMLAnchorElement", "WebKit_DOMHTMLAppletElement", "WebKit_DOMHTMLAreaElement", "WebKit_DOMHTMLBRElement", "WebKit_DOMHTMLBaseElement", "WebKit_DOMHTMLBaseFontElement", "WebKit_DOMHTMLBodyElement", "WebKit_DOMHTMLButtonElement", "WebKit_DOMHTMLCollection", "WebKit_DOMHTMLDListElement", "WebKit_DOMHTMLDirectoryElement", "WebKit_DOMHTMLDivElement", "WebKit_DOMHTMLDocument", "WebKit_DOMHTMLElement", "WebKit_DOMHTMLEmbedElement", "WebKit_DOMHTMLFieldSetElement", "WebKit_DOMHTMLFontElement", "WebKit_DOMHTMLFormElement", "WebKit_DOMHTMLFrameElement", "WebKit_DOMHTMLFrameSetElement", "WebKit_DOMHTMLHRElement", "WebKit_DOMHTMLHeadElement", "WebKit_DOMHTMLHeadingElement", "WebKit_DOMHTMLHtmlElement", "WebKit_DOMHTMLIFrameElement", "WebKit_DOMHTMLImageElement", "WebKit_DOMHTMLInputElement", "WebKit_DOMHTMLLIElement", "WebKit_DOMHTMLLabelElement", "WebKit_DOMHTMLLegendElement", "WebKit_DOMHTMLLinkElement", "WebKit_DOMHTMLMapElement", "WebKit_DOMHTMLMarqueeElement", "WebKit_DOMHTMLMenuElement", "WebKit_DOMHTMLMetaElement", "WebKit_DOMHTMLModElement", "WebKit_DOMHTMLOListElement", "WebKit_DOMHTMLObjectElement", "WebKit_DOMHTMLOptGroupElement", "WebKit_DOMHTMLOptionElement", "WebKit_DOMHTMLOptionsCollection", "WebKit_DOMHTMLParagraphElement", "WebKit_DOMHTMLParamElement", "WebKit_DOMHTMLPreElement", "WebKit_DOMHTMLQuoteElement", "WebKit_DOMHTMLScriptElement", "WebKit_DOMHTMLSelectElement", "WebKit_DOMHTMLStyleElement", "WebKit_DOMHTMLTableCaptionElement", "WebKit_DOMHTMLTableCellElement", "WebKit_DOMHTMLTableColElement", "WebKit_DOMHTMLTableElement", "WebKit_DOMHTMLTableRowElement", "WebKit_DOMHTMLTableSectionElement", "WebKit_DOMHTMLTextAreaElement", "WebKit_DOMHTMLTitleElement", "WebKit_DOMHTMLUListElement", "WebKit_DOMImplementation", "WebKit_DOMKeyboardEvent", "WebKit_DOMMediaList", "WebKit_DOMMouseEvent", "WebKit_DOMMutationEvent", "WebKit_DOMNamedNodeMap", "WebKit_DOMNode", "WebKit_DOMNodeIterator", "WebKit_DOMNodeList", "WebKit_DOMObject", "WebKit_DOMOverflowEvent", "WebKit_DOMProcessingInstruction", "WebKit_DOMProgressEvent", "WebKit_DOMRGBColor", "WebKit_DOMRange", "WebKit_DOMRect", "WebKit_DOMStyleSheet", "WebKit_DOMStyleSheetList", "WebKit_DOMText", "WebKit_DOMTreeWalker", "WebKit_DOMUIEvent", "WebKit_DOMWheelEvent", "WebKit_DOMXPathExpression", "WebKit_DOMXPathResult", "WebKit_WKBackForwardList", "WebKit_WKBackForwardListItem", "WebKit_WKContentRuleList", "WebKit_WKContentRuleListStore", "WebKit_WKContentWorld", "WebKit_WKDownload", "WebKit_WKFindConfiguration", "WebKit_WKFindResult", "WebKit_WKFrameInfo", "WebKit_WKHTTPCookieStore", "WebKit_WKNavigation", "WebKit_WKNavigationAction", "WebKit_WKNavigationResponse", "WebKit_WKOpenPanelParameters", "WebKit_WKPDFConfiguration", "WebKit_WKPreferences", "WebKit_WKProcessPool", "WebKit_WKScriptMessage", "WebKit_WKSecurityOrigin", "WebKit_WKSnapshotConfiguration", "WebKit_WKUserContentController", "WebKit_WKUserScript", "WebKit_WKWebView", "WebKit_WKWebViewConfiguration", "WebKit_WKWebpagePreferences", "WebKit_WKWebsiteDataRecord", "WebKit_WKWebsiteDataStore", "WebKit_WKWindowFeatures", "WebKit_WebArchive", "WebKit_WebBackForwardList", "WebKit_WebDataSource", "WebKit_WebDownload", "WebKit_WebFrame", "WebKit_WebFrameView", "WebKit_WebHistory", "WebKit_WebHistoryItem", "WebKit_WebPreferences", "WebKit_WebResource", "WebKit_WebScriptObject", "WebKit_WebUndefined", "WebKit_WebView"]
alloc = ["objc2?/alloc", "block2?/alloc"]
apple = ["objc2?/apple", "block2?/apple"]
block = ["block2"]
default = ["std", "apple"]
gnustep-1-7 = ["objc2?/gnustep-1-7", "block2?/gnustep-1-7"]
gnustep-1-8 = ["gnustep-1-7", "objc2?/gnustep-1-8", "block2?/gnustep-1-8"]
gnustep-1-9 = ["gnustep-1-8", "objc2?/gnustep-1-9", "block2?/gnustep-1-9"]
gnustep-2-0 = ["gnustep-1-9", "objc2?/gnustep-2-0", "block2?/gnustep-2-0"]
gnustep-2-1 = ["gnustep-2-0", "objc2?/gnustep-2-1", "block2?/gnustep-2-1"]
objective-c = ["objc2"]
std = ["alloc", "objc2?/std", "block2?/std"]
unstable-docsrs = []
unstable-example-basic_usage = ["Foundation", "Foundation_NSArray", "Foundation_NSDictionary", "Foundation_NSEnumerator"]
unstable-example-browser = ["apple", "AppKit", "AppKit_NSButton", "AppKit_NSColor", "AppKit_NSMenu", "AppKit_NSMenuItem", "AppKit_NSStackView", "AppKit_NSTextAttachmentCell", "AppKit_NSTextField", "AppKit_NSTextView", "AppKit_NSWindow", "Foundation", "Foundation_NSNotification", "Foundation_NSString", "Foundation_NSThread", "Foundation_NSURL", "Foundation_NSURLRequest", "WebKit", "WebKit_WKNavigation", "WebKit_WKWebView"]
unstable-example-delegate = ["apple", "Foundation", "Foundation_NSNotification", "Foundation_NSString", "Foundation_NSThread", "AppKit", "AppKit_NSApplication"]
unstable-example-metal = ["apple", "AppKit", "AppKit_NSWindow", "Foundation", "Foundation_NSCoder", "Foundation_NSDate", "Foundation_NSError", "Foundation_NSNotification", "Foundation_NSString", "Foundation_NSThread", "Metal", "Metal_MTLCompileOptions", "Metal_MTLRenderPassDescriptor", "Metal_MTLRenderPipelineColorAttachmentDescriptor", "Metal_MTLRenderPipelineColorAttachmentDescriptorArray", "Metal_MTLRenderPipelineDescriptor", "MetalKit", "MetalKit_MTKView", "Metal_MTLRenderPassDescriptor"]
unstable-example-nspasteboard = ["apple", "Foundation", "Foundation_NSArray", "Foundation_NSDictionary", "Foundation_NSString", "AppKit", "AppKit_NSPasteboard"]
unstable-example-speech_synthesis = ["apple", "Foundation", "Foundation_NSString"]
unstable-frameworks-all = ["unstable-frameworks-ios", "unstable-frameworks-macos-13"]
unstable-frameworks-gnustep = ["AppKit_all", "Foundation_all"]
unstable-frameworks-gnustep-32bit = ["Foundation_all"]
unstable-frameworks-ios = ["Foundation_all", "unstable-example-basic_usage", "unstable-example-speech_synthesis"]
unstable-frameworks-macos-10-12 = ["AppKit_all", "Automator_all", "CloudKit_all", "Contacts_all", "CoreAnimation_all", "CoreData_all", "CoreLocation_all", "CoreWLAN_all", "EventKit_all", "ExceptionHandling_all", "Foundation_all", "GameController_all", "GameKit_all", "InputMethodKit_all", "LocalAuthentication_all", "MapKit_all", "MediaPlayer_all", "MetalKit_all", "Metal_all", "OSAKit_all", "PhotoKit_all", "StoreKit_all", "WebKit_all", "unstable-example-basic_usage"]
unstable-frameworks-macos-10-13 = ["ExternalAccessory_all", "unstable-example-delegate", "unstable-example-metal", "unstable-example-nspasteboard", "unstable-example-speech_synthesis", "unstable-frameworks-macos-10-12"]
unstable-frameworks-macos-11 = ["Accessibility_all", "AdSupport_all", "AuthenticationServices_all", "AutomaticAssessmentConfiguration_all", "BusinessChat_all", "ClassKit_all", "DeviceCheck_all", "FileProviderUI_all", "FileProvider_all", "IdentityLookup_all", "LinkPresentation_all", "SoundAnalysis_all", "Speech_all", "UniformTypeIdentifiers_all", "UserNotifications_all", "unstable-frameworks-macos-10-13"]
unstable-frameworks-macos-12 = ["AdServices_all", "DataDetection_all", "LocalAuthenticationEmbeddedUI_all", "MailKit_all", "MetricKit_all", "unstable-frameworks-macos-11"]
unstable-frameworks-macos-13 = ["BackgroundAssets_all", "CallKit_all", "ExtensionKit_all", "HealthKit_all", "MetalFX_all", "unstable-example-browser", "unstable-frameworks-macos-12"]
unstable-frameworks-macos-14 = ["unstable-frameworks-macos-13"]
unstable-private = []
unstable-static-nsstring = []

[package]
authors = ["Mads Marquart <mads@marquart.dk>"]
categories = ["accessibility", "api-bindings", "development-tools::ffi", "external-ffi-bindings", "os::macos-apis"]
description = "Bindings to Apple's frameworks"
documentation = "https://docs.rs/icrate/"
edition = "2021"
keywords = ["macos", "ios", "cocoa", "apple", "framework"]
license = "MIT"
name = "icrate"
readme = "README.md"
repository = "https://github.com/madsmtm/objc2"
rust-version = "1.60"
version = "0.1.2"

[package.metadata.docs.rs]
default-target = "x86_64-apple-darwin"
features = ["block", "objective-c", "dispatch", "unstable-frameworks-all", "unstable-private", "unstable-docsrs"]
targets = ["x86_64-apple-darwin", "aarch64-apple-darwin", "aarch64-apple-ios", "x86_64-apple-ios", "x86_64-unknown-linux-gnu", "i686-unknown-linux-gnu", "x86_64-pc-windows-msvc"]