├── .gitignore ├── README.md ├── Whats-New-In-Swift-6-0.playground ├── Pages │ ├── 128-bit Integer Types.xcplaygroundpage │ │ └── Contents.swift │ ├── Access-level modifiers on import declarations.xcplaygroundpage │ │ └── Contents.swift │ ├── Add Collection Operations on Noncontiguous Elements.xcplaygroundpage │ │ └── Contents.swift │ ├── BitwiseCopyable.xcplaygroundpage │ │ └── Contents.swift │ ├── Complete concurrency enabled by default.xcplaygroundpage │ │ └── Contents.swift │ ├── Introduction.xcplaygroundpage │ │ └── Contents.swift │ ├── Pack iteration.xcplaygroundpage │ │ └── Contents.swift │ ├── Typed throws.xcplaygroundpage │ │ └── Contents.swift │ ├── Upgrades for noncopyable types.xcplaygroundpage │ │ └── Contents.swift │ └── count(where).xcplaygroundpage │ │ └── Contents.swift └── contents.xcplayground └── playground-screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/README.md -------------------------------------------------------------------------------- /Whats-New-In-Swift-6-0.playground/Pages/128-bit Integer Types.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/Whats-New-In-Swift-6-0.playground/Pages/128-bit Integer Types.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-6-0.playground/Pages/Access-level modifiers on import declarations.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/Whats-New-In-Swift-6-0.playground/Pages/Access-level modifiers on import declarations.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-6-0.playground/Pages/Add Collection Operations on Noncontiguous Elements.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/Whats-New-In-Swift-6-0.playground/Pages/Add Collection Operations on Noncontiguous Elements.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-6-0.playground/Pages/BitwiseCopyable.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/Whats-New-In-Swift-6-0.playground/Pages/BitwiseCopyable.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-6-0.playground/Pages/Complete concurrency enabled by default.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/Whats-New-In-Swift-6-0.playground/Pages/Complete concurrency enabled by default.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-6-0.playground/Pages/Introduction.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/Whats-New-In-Swift-6-0.playground/Pages/Introduction.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-6-0.playground/Pages/Pack iteration.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/Whats-New-In-Swift-6-0.playground/Pages/Pack iteration.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-6-0.playground/Pages/Typed throws.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/Whats-New-In-Swift-6-0.playground/Pages/Typed throws.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-6-0.playground/Pages/Upgrades for noncopyable types.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/Whats-New-In-Swift-6-0.playground/Pages/Upgrades for noncopyable types.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-6-0.playground/Pages/count(where).xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/Whats-New-In-Swift-6-0.playground/Pages/count(where).xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-6-0.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/Whats-New-In-Swift-6-0.playground/contents.xcplayground -------------------------------------------------------------------------------- /playground-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-6-0/HEAD/playground-screenshot.png --------------------------------------------------------------------------------