├── .gitignore ├── LICENSE ├── README.md └── source ├── bad_boolz.playground ├── Contents.swift ├── contents.xcplayground └── playground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── basic.playground ├── Contents.swift ├── contents.xcplayground └── playground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── never_absurd.playground ├── Contents.swift ├── contents.xcplayground └── playground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── never_exists.playground ├── Contents.swift ├── contents.xcplayground └── playground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── typesafe_url.playground ├── Contents.swift ├── contents.xcplayground └── playground.xcworkspace │ └── contents.xcworkspacedata ├── uncertainty.playground ├── Contents.swift ├── contents.xcplayground └── playground.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── vulgar_fractions.playground ├── Contents.swift ├── contents.xcplayground └── playground.xcworkspace ├── contents.xcworkspacedata └── xcshareddata └── IDEWorkspaceChecks.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/README.md -------------------------------------------------------------------------------- /source/bad_boolz.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/bad_boolz.playground/Contents.swift -------------------------------------------------------------------------------- /source/bad_boolz.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/bad_boolz.playground/contents.xcplayground -------------------------------------------------------------------------------- /source/bad_boolz.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/bad_boolz.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /source/bad_boolz.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/bad_boolz.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /source/basic.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/basic.playground/Contents.swift -------------------------------------------------------------------------------- /source/basic.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/basic.playground/contents.xcplayground -------------------------------------------------------------------------------- /source/basic.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/basic.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /source/basic.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/basic.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /source/never_absurd.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/never_absurd.playground/Contents.swift -------------------------------------------------------------------------------- /source/never_absurd.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/never_absurd.playground/contents.xcplayground -------------------------------------------------------------------------------- /source/never_absurd.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/never_absurd.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /source/never_absurd.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/never_absurd.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /source/never_exists.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/never_exists.playground/Contents.swift -------------------------------------------------------------------------------- /source/never_exists.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/never_exists.playground/contents.xcplayground -------------------------------------------------------------------------------- /source/never_exists.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/never_exists.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /source/never_exists.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/never_exists.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /source/typesafe_url.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/typesafe_url.playground/Contents.swift -------------------------------------------------------------------------------- /source/typesafe_url.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/typesafe_url.playground/contents.xcplayground -------------------------------------------------------------------------------- /source/typesafe_url.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/typesafe_url.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /source/uncertainty.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/uncertainty.playground/Contents.swift -------------------------------------------------------------------------------- /source/uncertainty.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/uncertainty.playground/contents.xcplayground -------------------------------------------------------------------------------- /source/uncertainty.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/uncertainty.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /source/uncertainty.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/uncertainty.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /source/vulgar_fractions.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/vulgar_fractions.playground/Contents.swift -------------------------------------------------------------------------------- /source/vulgar_fractions.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/vulgar_fractions.playground/contents.xcplayground -------------------------------------------------------------------------------- /source/vulgar_fractions.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/vulgar_fractions.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /source/vulgar_fractions.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jessesquires/esoteric-swift/HEAD/source/vulgar_fractions.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist --------------------------------------------------------------------------------