├── .gitignore ├── README.md ├── Whats-New-In-Swift-4-2.playground ├── Pages │ ├── Boolean toggling.xcplaygroundpage │ │ └── Contents.swift │ ├── Checking sequence elements match a condition.xcplaygroundpage │ │ └── Contents.swift │ ├── Derived collections of enum cases.xcplaygroundpage │ │ └── Contents.swift │ ├── Dynamic member look up.xcplaygroundpage │ │ └── Contents.swift │ ├── Enhanced conditional conformances.xcplaygroundpage │ │ └── Contents.swift │ ├── In-place collection element removal.xcplaygroundpage │ │ └── Contents.swift │ ├── Introduction.xcplaygroundpage │ │ └── Contents.swift │ ├── Random number generation and shuffling.xcplaygroundpage │ │ └── Contents.swift │ ├── Simpler, more secure hashing.xcplaygroundpage │ │ └── Contents.swift │ └── Warning and error diagnostic directives.xcplaygroundpage │ │ └── Contents.swift └── contents.xcplayground └── playground-screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/README.md -------------------------------------------------------------------------------- /Whats-New-In-Swift-4-2.playground/Pages/Boolean toggling.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/Whats-New-In-Swift-4-2.playground/Pages/Boolean toggling.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-4-2.playground/Pages/Checking sequence elements match a condition.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/Whats-New-In-Swift-4-2.playground/Pages/Checking sequence elements match a condition.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-4-2.playground/Pages/Derived collections of enum cases.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/Whats-New-In-Swift-4-2.playground/Pages/Derived collections of enum cases.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-4-2.playground/Pages/Dynamic member look up.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/Whats-New-In-Swift-4-2.playground/Pages/Dynamic member look up.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-4-2.playground/Pages/Enhanced conditional conformances.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/Whats-New-In-Swift-4-2.playground/Pages/Enhanced conditional conformances.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-4-2.playground/Pages/In-place collection element removal.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/Whats-New-In-Swift-4-2.playground/Pages/In-place collection element removal.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-4-2.playground/Pages/Introduction.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/Whats-New-In-Swift-4-2.playground/Pages/Introduction.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-4-2.playground/Pages/Random number generation and shuffling.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/Whats-New-In-Swift-4-2.playground/Pages/Random number generation and shuffling.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-4-2.playground/Pages/Simpler, more secure hashing.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/Whats-New-In-Swift-4-2.playground/Pages/Simpler, more secure hashing.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-4-2.playground/Pages/Warning and error diagnostic directives.xcplaygroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/Whats-New-In-Swift-4-2.playground/Pages/Warning and error diagnostic directives.xcplaygroundpage/Contents.swift -------------------------------------------------------------------------------- /Whats-New-In-Swift-4-2.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/Whats-New-In-Swift-4-2.playground/contents.xcplayground -------------------------------------------------------------------------------- /playground-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/whats-new-in-swift-4-2/HEAD/playground-screenshot.png --------------------------------------------------------------------------------