├── .gitignore ├── README.md ├── Whats-New-In-Swift-5-8.playground ├── Pages │ ├── Allow implicit self for weak self captures, after self is unwrapped.xcplaygroundpage │ │ └── Contents.swift │ ├── Collection downcasts in cast patterns are now supported.xcplaygroundpage │ │ └── Contents.swift │ ├── Concise magic file names.xcplaygroundpage │ │ └── Contents.swift │ ├── Function back deployment.xcplaygroundpage │ │ └── Contents.swift │ ├── Introduction.xcplaygroundpage │ │ └── Contents.swift │ ├── Lift all limitations on variables in result builders.xcplaygroundpage │ │ └── Contents.swift │ └── Opening existential arguments to optional parameters.xcplaygroundpage │ │ └── Contents.swift └── contents.xcplayground └── playground-screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-5-8/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-5-8/HEAD/README.md -------------------------------------------------------------------------------- /Whats-New-In-Swift-5-8.playground/Pages/Allow implicit self for weak self captures, after self is unwrapped.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-5-8/HEAD/Whats-New-In-Swift-5-8.playground/Pages/Allow implicit self for weak self captures, after self is unwrapped.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-5-8.playground/Pages/Collection downcasts in cast patterns are now supported.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-5-8/HEAD/Whats-New-In-Swift-5-8.playground/Pages/Collection downcasts in cast patterns are now supported.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-5-8.playground/Pages/Concise magic file names.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-5-8/HEAD/Whats-New-In-Swift-5-8.playground/Pages/Concise magic file names.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-5-8.playground/Pages/Function back deployment.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-5-8/HEAD/Whats-New-In-Swift-5-8.playground/Pages/Function back deployment.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-5-8.playground/Pages/Introduction.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-5-8/HEAD/Whats-New-In-Swift-5-8.playground/Pages/Introduction.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-5-8.playground/Pages/Lift all limitations on variables in result builders.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-5-8/HEAD/Whats-New-In-Swift-5-8.playground/Pages/Lift all limitations on variables in result builders.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-5-8.playground/Pages/Opening existential arguments to optional parameters.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-5-8/HEAD/Whats-New-In-Swift-5-8.playground/Pages/Opening existential arguments to optional parameters.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-5-8.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-5-8/HEAD/Whats-New-In-Swift-5-8.playground/contents.xcplayground -------------------------------------------------------------------------------- /playground-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-5-8/HEAD/playground-screenshot.png --------------------------------------------------------------------------------