-
Notifications
You must be signed in to change notification settings - Fork 0
/
swift.rdf
1582 lines (1582 loc) · 113 KB
/
swift.rdf
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
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF
xmlns:dct="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#private">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#PrivateAccess"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">private</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Double">
<skos:related rdf:resource="http://dbpedia.org/page/Double-precision_floating-point_format"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Struct"/>
<skos:prefLabel xml:lang="en">Double</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID321"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#String">
<skos:related rdf:resource="http://dbpedia.org/page/String_%28computer_science%29"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Struct"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">String</skos:prefLabel>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/StringsAndCharacters.html"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Constant">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Constant_%28computer_programming%29"/>
<skos:prefLabel xml:lang="en">Constant</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID310"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#throw">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ErrorHandling.html#ID509"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#ControlFlow"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<skos:prefLabel xml:lang="en">throw</skos:prefLabel>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#ErrorHandling"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#UnownedReference">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/AutomaticReferenceCounting.html#ID54"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#ARC"/>
<skos:prefLabel xml:lang="en">Unowned Reference</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Inheritance">
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Class"/>
<skos:prefLabel xml:lang="en">Inheritance</skos:prefLabel>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Inheritance.html#inheritance"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Inheritance_%28object-oriented_programming%29"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Enumeration">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Enumerated_type"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#ValueType"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Enumerations.html#enumerations"/>
<skos:prefLabel xml:lang="en">Enumeration</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#catch">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">catch</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#DoCatch"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#DesignatedInitializer">
<skos:prefLabel xml:lang="en">Designated Initializer</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Initializer"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Initialization.html#ID217"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#PropertyRequirement">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Protocols.html#ID269"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Protocol"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Property"/>
<skos:prefLabel xml:lang="en">Property Requirement</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#MethodRequirement">
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Protocol"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Method"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Protocols.html#ID270"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Method Requirement</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Abstract_type"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#public">
<skos:prefLabel xml:lang="en">public</skos:prefLabel>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#PublicAccess"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#WhileLoop">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html#ID124"/>
<skos:prefLabel xml:lang="en">While Loop</skos:prefLabel>
<skos:related rdf:resource="http://dbpedia.org/page/While_loop"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Loop"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#LabeledStatement">
<skos:related rdf:resource="http://dbpedia.org/page/Label_%28computer_science%29"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html#ID141"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#break"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Labeled Statement</skos:prefLabel>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#ControlFlow"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#continue"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#TypeCheckOperator">
<skos:prefLabel xml:lang="en">Type Check Operator</skos:prefLabel>
<skos:related rdf:resource="http://dbpedia.org/page/Type_introspection"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Operator"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#TypeCasting"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TypeCasting.html#ID340"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#internal">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#InternalAccess"/>
<skos:prefLabel xml:lang="en">internal</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#self">
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Method"/>
<skos:prefLabel xml:lang="en">self</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Instance"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Methods.html#ID238"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/This_%28computer_programming%29"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#RequiredInitializer">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Initialization.html#ID231"/>
<skos:prefLabel xml:lang="en">Required Initializer</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Initializer"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Operator">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Operator</skos:prefLabel>
<skos:related rdf:resource="http://dbpedia.org/page/Operator_%28computer_programming%29"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/BasicOperators.html#basic-operators"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#TypeCasting">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://dbpedia.org/page/Type_conversion"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TypeCasting.html#type-casting"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Type"/>
<skos:prefLabel xml:lang="en">Type Casting</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#OpenAccess">
<skos:prefLabel xml:lang="en">Open Access</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#AccessLevel"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Instance">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Class"/>
<skos:related rdf:resource="http://dbpedia.org/page/Object_%28computer_science%29"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Instance</skos:prefLabel>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Struct"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ClassesAndStructures.html#ID85"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#DefaultParameterValue">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Default Parameter Value</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/Default_argument"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Functions.html#ID169"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Parameter"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Optional">
<skos:prefLabel xml:lang="en">Optional</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/Option_type"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Type"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID330"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#RangeOperator">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Range Operator</skos:prefLabel>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Operator"/>
<skos:related rdf:resource="http://dbpedia.org/page/Range_%28computer_programming%29"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/BasicOperators.html#ID73"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#ComparisonOperator">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Operator"/>
<skos:related rdf:resource="http://dbpedia.org/page/Relational_operator"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/BasicOperators.html#ID70"/>
<skos:prefLabel xml:lang="en">Comparison Operator</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Function">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Functions.html"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/Subroutine"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#ReferenceType"/>
<skos:prefLabel xml:lang="en">Function</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#AssociatedType">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#GenericType"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Generics.html#ID189"/>
<skos:prefLabel xml:lang="en">Associated Type</skos:prefLabel>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Protocol"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Attribute">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Attribute_%28computing%29"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/ReferenceManual/Attributes.html#attributes"/>
<skos:prefLabel xml:lang="en">Attribute</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift">
<dct:description>This is an SKOS-based vocabulary about the Swift programming language.</dct:description>
<dct:creator rdf:nodeID="ub1bL10C17"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
<owl:versionInfo>5.2/1.0.0</owl:versionInfo>
<rdfs:seeAlso rdf:resource="https://coast.uni.lu/alma/"/>
<dct:title>Swift Vocabulary</dct:title>
<owl:versionIRI rdf:resource="http://purl.org/lu/uni/alma/swift/5.2"/>
<dct:modified>2020-04-27</dct:modified>
<dct:created>2020-04-27</dct:created>
<dct:subject rdf:resource="http://dbpedia.org/page/Swift_%28programming_language%29"/>
<owl:imports rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<dct:license rdf:resource="https://creativecommons.org/licenses/by-sa/4.0/"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#ForInLoop">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/Foreach_loop"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Loop"/>
<skos:prefLabel xml:lang="en">For-In Loop</skos:prefLabel>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html#ID121"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#EscapingClosure">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">Escaping Closure</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Closures.html#ID546"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Closure"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#StrongReference">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#ARC"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">Strong Reference</skos:prefLabel>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/AutomaticReferenceCounting.html#ID49"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#TypeCastOperator">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">Type Cast Operator</skos:prefLabel>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#DownCasting"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Operator"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Initializer">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Class"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Initialization.html#ID205"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Enumeration"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Method"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Struct"/>
<skos:prefLabel xml:lang="en">Initializer</skos:prefLabel>
<skos:related rdf:resource="http://dbpedia.org/page/Constructor_%28object-oriented_programming%29"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#ProtocolExtension">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/Trait_%28computer_programming%29"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Protocol Extension</skos:prefLabel>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Protocol"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Extension"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Protocols.html#ID521"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#RecursiveEnumeration">
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Enumeration"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">Recursive Enumeration</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Enumerations.html#ID536"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#some">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#OpaqueType"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<skos:prefLabel xml:lang="en">some</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#TypeAnnotation">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Type Annotation</skos:prefLabel>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID312"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Type"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Collection">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Collection_%28abstract_data_type%29"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Struct"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Collection</skos:prefLabel>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/CollectionTypes.html"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#ARC">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://dbpedia.org/page/Automatic_Reference_Counting"/>
<skos:prefLabel xml:lang="en">Automatic Reference Counting</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/AutomaticReferenceCounting.html#automatic-reference-counting"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Deinitializer">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Deinitializer</skos:prefLabel>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Deinitialization.html#deinitialization"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/Destructor_%28computer_programming%29"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#RawValue">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Enumeration"/>
<skos:prefLabel xml:lang="en">Raw Value</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Enumerations.html#ID149"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#IdentityOperator">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#ReferenceType"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Operator"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ClassesAndStructures.html#ID90"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Identity Operator</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Scheme">
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#TypeAlias"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#TypeInference"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Extension"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#ForcedUnwrapping"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#DefaultPropertyValue"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#TypeCasting"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Deinitializer"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#ControlFlow"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#MethodRequirement"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Parameter"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Type"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#OptionalChaining"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#ReturnValue"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#TypeConstraint"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#nil"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Module"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#OptionalProtocolRequirement"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#StringInterpolation"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#WeakReference"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#AccessControl"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#InitializerDelegation"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#PropertyRequirement"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#ErrorHandling"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#RawValue"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#TypeAnnotation"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#AssociatedType"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Generics"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Inheritance"/>
<dct:title>Swift</dct:title>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Instance"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#GenericWhereClause"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Constant"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#StrongReference"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#DoCatch"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Operator"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#CompilerControlStatement"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#PropertyWrapper"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#UnownedReference"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#OptionalBinding"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Variable"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Attribute"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Overriding"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#ARC"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Subclassing"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#PropertyObserver"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#ArgumentLabel"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#AssociatedValue"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#DefaultParameterValue"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#BaseClass"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#InitializerRequirement"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Comment"/>
<skos:hasTopConcept rdf:resource="http://purl.org/lu/uni/alma/swift#Property"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#FilePrivateAccess">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#AccessLevel"/>
<skos:prefLabel xml:lang="en">File-private Access</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#final">
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Inheritance.html#ID202"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Overriding"/>
<skos:prefLabel xml:lang="en">final</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Overriding">
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Inheritance"/>
<skos:related rdf:resource="http://dbpedia.org/page/Method_overriding"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Inheritance.html#ID196"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Overriding</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#VariadicParameter">
<skos:prefLabel xml:lang="en">Variadic Parameter</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://dbpedia.org/page/Variadic_function"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Functions.html#ID171"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Parameter"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#continue">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://dbpedia.org/page/Control_flow"/>
<skos:prefLabel xml:lang="en">continue</skos:prefLabel>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#ControlFlow"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html#ID136"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#ConditionalStatement">
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#ControlFlow"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Conditional Statement</skos:prefLabel>
<skos:related rdf:resource="http://dbpedia.org/page/Conditional_%28computer_programming%29"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html#ID127"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#mutating">
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#ValueType"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Methods.html#ID239"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Instance"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Method"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">mutating</skos:prefLabel>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#StringInterpolation">
<skos:related rdf:resource="http://dbpedia.org/page/String_interpolation"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/StringsAndCharacters.html#ID292"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">String Interpolation</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#String"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Int">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Struct"/>
<skos:related rdf:resource="http://dbpedia.org/page/Integer_%28computer_science%29"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID317"/>
<skos:prefLabel xml:lang="en">Int</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#InitializerDelegation">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Initializer"/>
<skos:prefLabel xml:lang="en">Initializer Delegation</skos:prefLabel>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Initialization.html#ID215"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#AccessControl">
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/AccessControl.html#access-control"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Encapsulation_%28computer_programming%29"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Access Control</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#OptionalBinding">
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Optional"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID333"/>
<skos:prefLabel xml:lang="en">Optional Binding</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#If"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#super">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#BaseClass"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/ReferenceManual/Expressions.html#ID392"/>
<skos:prefLabel xml:lang="en">super</skos:prefLabel>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#GenericWhereClause">
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#TypeConstraint"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#GenericType"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Generic Where Clause</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Generics.html#ID192"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#InitializerRequirement">
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Protocol"/>
<skos:prefLabel xml:lang="en">Initializer Requirement</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Protocols.html#ID272"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Initializer"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Closure">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Closures.html"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#ReferenceType"/>
<skos:prefLabel xml:lang="en">Closure</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Closure_%28computer_programming%29"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#DefaultInitializer">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Initializer"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Initialization.html#ID213"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">Default Initializer</skos:prefLabel>
<skos:related rdf:resource="http://dbpedia.org/page/Default_constructor"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#AssignmentOperator">
<skos:related rdf:resource="http://dbpedia.org/page/Operator_%28computer_programming%29"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Operator"/>
<skos:prefLabel xml:lang="en">Assignment Operator</skos:prefLabel>
<skos:related rdf:resource="http://dbpedia.org/page/Assignment_%28computer_science%29"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/BasicOperators.html#ID62"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Method">
<skos:prefLabel xml:lang="en">Method</skos:prefLabel>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Class"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Enumeration"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Methods.html#methods"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Struct"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Function"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Method_%28computer_programming%29"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Autoclosure">
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Closure"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Autoclosure</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Closures.html#ID543"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Any">
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TypeCasting.html#ID342"/>
<skos:prefLabel xml:lang="en">Any</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#TypeCasting"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Type"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Dictionary">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/CollectionTypes.html#ID113"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Collection"/>
<skos:related rdf:resource="http://dbpedia.org/page/Associative_array"/>
<skos:prefLabel xml:lang="en">Dictionary</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#RepeatWhileLoop">
<skos:related rdf:resource="http://dbpedia.org/page/Do_while_loop"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Repeat-While Loop</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Loop"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html#ID126"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#FailableInitializer">
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Initialization.html#ID224"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Initializer"/>
<skos:prefLabel xml:lang="en">Failable Initializer</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#NestedType">
<skos:prefLabel xml:lang="en">Nested Type</skos:prefLabel>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Type"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/NestedTypes.html#nested-types"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#PrivateAccess">
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#AccessLevel"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Private Access</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#TypeProperty">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Properties.html#ID264"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Property"/>
<skos:prefLabel xml:lang="en">Type Property</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/Class_variable"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#break">
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#ControlFlow"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Control_flow"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html#ID137"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<skos:prefLabel xml:lang="en">break</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Type">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Data_type"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/ReferenceManual/Types.html#types"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">Type</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Float">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Struct"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID321"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Float</skos:prefLabel>
<skos:related rdf:resource="http://dbpedia.org/page/Floating-point_arithmetic"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#ControlFlow">
<skos:prefLabel xml:lang="en">Control Flow</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html#control-flow"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/Control_flow"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#BaseClass">
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Inheritance"/>
<skos:prefLabel xml:lang="en">Base Class</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Inheritance.html#ID194"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://dbpedia.org/page/Superclass_%28computer_science%29"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#DownCasting">
<skos:prefLabel xml:lang="en">Downcasting</skos:prefLabel>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TypeCasting.html#ID341"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#TypeCasting"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/Downcasting"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Property">
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Properties.html#properties"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Class"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Struct"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Enumeration"/>
<skos:related rdf:resource="http://dbpedia.org/page/Property_%28programming%29"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Property</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#TrailingClosure">
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Closure"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Closures.html#ID102"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Trailing Closure</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Comment">
<skos:prefLabel xml:lang="en">Comment</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID315"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Comment_%28computer_programming%29"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Switch">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Switch</skos:prefLabel>
<skos:related rdf:resource="http://dbpedia.org/page/Switch_statement"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html#ID129"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#ConditionalStatement"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#override">
<skos:prefLabel xml:lang="en">override</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Overriding"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#StoredProperty">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Stored Property</skos:prefLabel>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Properties.html#ID255"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Property"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://dbpedia.org/page/Field_%28computer_science%29"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#TypeInference">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID322"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Type"/>
<skos:related rdf:resource="http://dbpedia.org/page/Type_inference"/>
<skos:prefLabel xml:lang="en">Type Inference</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#where">
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html#ID134"/>
<skos:prefLabel xml:lang="en">where</skos:prefLabel>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#GenericWhereClause"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#deinit">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<skos:prefLabel xml:lang="en">deinit</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Deinitializer"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#GenericType">
<skos:related rdf:resource="http://dbpedia.org/page/Generic_programming"/>
<skos:prefLabel xml:lang="en">Generic Type</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Type"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Generics.html#ID184"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://dbpedia.org/page/Generics_in_Java"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Generics"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#LazyStoredProperty">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Properties.html#ID257"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#StoredProperty"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Lazy Stored Property</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#ValueType">
<skos:prefLabel xml:lang="en">Value Type</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Type"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ClassesAndStructures.html#ID88"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/Value_type"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#convenience">
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#ConvenienceInitializer"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">convenience</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#ComputedProperty">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Property"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://dbpedia.org/page/Property_%28programming%29"/>
<skos:prefLabel xml:lang="en">Computed Property</skos:prefLabel>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Properties.html#ID259"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#NestedFunction">
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Function"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Nested Function</skos:prefLabel>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/Nested_function"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Functions.html#ID178"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#DefaultPropertyValue">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Property"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Initialization.html#ID206"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Default Property Value</skos:prefLabel>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Initializer"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#defer">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ErrorHandling.html#ID514"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">defer</skos:prefLabel>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#ErrorHandling"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#ErrorHandling">
<skos:related rdf:resource="http://dbpedia.org/page/Exception_handling"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Error Handling</skos:prefLabel>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/ErrorHandling.html#error-handling"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#print">
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID314"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Function"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">print</skos:prefLabel>
<skos:related rdf:resource="http://dbpedia.org/page/Printf_format_string"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#OpaqueType">
<skos:prefLabel xml:lang="en">Opaque Type</skos:prefLabel>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Type"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/OpaqueTypes.html#opaque-types"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#ReturnValue"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Array">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/CollectionTypes.html#ID107"/>
<skos:related rdf:resource="http://dbpedia.org/page/Array_data_type"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Collection"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Array</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Subscript">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Enumeration"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Class"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Subscripts.html#subscripts"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Struct"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#ComputedProperty"/>
<skos:prefLabel xml:lang="en">Subscript</skos:prefLabel>
<skos:related rdf:resource="http://dbpedia.org/page/Index_notation"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Set">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:related rdf:resource="http://dbpedia.org/page/Set_%28abstract_data_type%29"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/CollectionTypes.html#ID484"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Collection"/>
<skos:prefLabel xml:lang="en">Set</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#Bool">
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/TheBasics.html#ID328"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:related rdf:resource="http://dbpedia.org/page/Boolean_data_type"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Struct"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:prefLabel xml:lang="en">Boolean</skos:prefLabel>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#TypeConstraint">
<skos:related rdf:resource="http://dbpedia.org/page/Bounded_quantification"/>
<skos:prefLabel xml:lang="en">Type Constraint</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Generics.html#ID186"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#GenericType"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#ClosureExpression">
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Closure"/>
<skos:definition rdf:resource="https://docs.swift.org/swift-book/LanguageGuide/Closures.html#ID95"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">Closure Expression</skos:prefLabel>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
</rdf:Description>
<rdf:Description rdf:about="http://purl.org/lu/uni/alma/swift#func">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:broader rdf:resource="http://purl.org/lu/uni/alma/swift#Keyword"/>
<skos:inScheme rdf:resource="http://purl.org/lu/uni/alma/swift#Scheme"/>
<skos:related rdf:resource="http://purl.org/lu/uni/alma/swift#Function"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#NamedIndividual"/>
<skos:prefLabel xml:lang="en">func</skos:prefLabel>