Skip to content

Commit 9af3b45

Browse files
Update Go Further section (#300)
- Use latest URL for Swift tour in TSPL - Reorder items - Add title and blurb for Value and Reference Types blog post
1 parent 26411f4 commit 9af3b45

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

_data/go_further.yml

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,37 @@
11
- title: "A Swift Tour"
22
description: "_The Swift Programming Language_, the authoritative reference for Swift, begins with a tour of the language. The tour gives you an introduction to the fundamental features, concepts, and syntax of Swift. The remainder of the book explains each topic in greater detail."
33
content_type: book
4-
content_url: https://docs.swift.org/swift-book/GuidedTour/GuidedTour.html
4+
content_url: https://docs.swift.org/swift-book/documentation/the-swift-programming-language/guidedtour/
55
thumbnail_url: #TBD
66
release_date: 2014-08-18
77
featured: true
88
external: true
9-
- title: "Concurrency"
10-
description: "Swift has concurrency features built into the language making it easier to write concurrent code with the assistance of the compiler. This video introduces the async/await mechanism, a key part of Swift Concurrency."
11-
content_type: video
12-
content_url: https://developer.apple.com/videos/play/wwdc2021/10132/
13-
thumbnail_url: /assets/images/getting-started/meet-async-await-thumbnail.jpg
14-
release_date: 2021-06-08
15-
external: true
9+
- title: "Value and Reference Types"
10+
description: "This article describes the differences in behavior between _value types_ and _reference types_—a fundamental part of learning Swift and choosing between structures and classes."
11+
content_type: article
12+
content_url: https://www.swift.org/blog/2023-04-29-value-and-reference-types
13+
thumbnail_url: #TBD
14+
release_date: 2023-04-29
15+
external: false
1616
- title: "Generics"
1717
description: "In Swift, generics are a fundamental way to write abstract code. This video walks through the basics of Swift Generics and introducing generics into your code."
1818
content_type: video
1919
content_url: https://developer.apple.com/videos/play/wwdc2022/110352/
2020
thumbnail_url: /assets/images/getting-started/swift-generics-thumbnail.jpg
2121
release_date: 2021-06-09
2222
external: true
23+
- title: "Concurrency"
24+
description: "Swift has concurrency features built into the language making it easier to write concurrent code with the assistance of the compiler. This video introduces the async/await mechanism, a key part of Swift Concurrency."
25+
content_type: video
26+
content_url: https://developer.apple.com/videos/play/wwdc2021/10132/
27+
thumbnail_url: /assets/images/getting-started/meet-async-await-thumbnail.jpg
28+
release_date: 2021-06-08
29+
external: true
2330
- title: "Regular Expressions"
2431
description: "Swift provides first-class regular expression support, commonly known as regex, for effective string processing. This video gives an overview of the power and flexibility of Swift Regex."
2532
content_type: video
2633
content_url: https://developer.apple.com/videos/play/wwdc2022/110357/
2734
thumbnail_url: /assets/images/getting-started/regular-expression-thumbnail.jpg
2835
release_date: 2022-06-07
2936
external: true
30-
- title: "Structures and Classes"
31-
description: "In Swift, many existing types as well as types you define are structures and classes. This chapter of _The Swift Programming Language_ describes the similarities and differences of these fundamental building blocks, including the key concepts of value types and reference types."
32-
content_type: article
33-
content_url: https://docs.swift.org/swift-book/documentation/the-swift-programming-language/classesandstructures
34-
thumbnail_url: #TBD
35-
release_date: 2022-09-12
36-
external: true
37+

0 commit comments

Comments
 (0)