├── .gitignore ├── Example ├── 1. Introduction.md ├── 2. Derived collections of enum cases.md ├── 3. Warning and error diagnostic directives.md └── 4. In-place collection element removal.md ├── LICENSE ├── Package.swift ├── README.md └── Sources └── Playmaker ├── App.swift ├── FixedStrings.swift ├── Page.swift ├── SafeWriting.swift └── main.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/1. Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/Example/1. Introduction.md -------------------------------------------------------------------------------- /Example/2. Derived collections of enum cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/Example/2. Derived collections of enum cases.md -------------------------------------------------------------------------------- /Example/3. Warning and error diagnostic directives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/Example/3. Warning and error diagnostic directives.md -------------------------------------------------------------------------------- /Example/4. In-place collection element removal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/Example/4. In-place collection element removal.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Playmaker/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/Sources/Playmaker/App.swift -------------------------------------------------------------------------------- /Sources/Playmaker/FixedStrings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/Sources/Playmaker/FixedStrings.swift -------------------------------------------------------------------------------- /Sources/Playmaker/Page.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/Sources/Playmaker/Page.swift -------------------------------------------------------------------------------- /Sources/Playmaker/SafeWriting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/Sources/Playmaker/SafeWriting.swift -------------------------------------------------------------------------------- /Sources/Playmaker/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twostraws/Playmaker/HEAD/Sources/Playmaker/main.swift --------------------------------------------------------------------------------