├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md └── workflows │ ├── ci.yml │ └── format.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── LICENSE ├── Makefile ├── NonEmpty.playground ├── Contents.swift └── contents.xcplayground ├── Package.swift ├── README.md ├── Sources └── NonEmpty │ ├── NonEmpty+Dictionary.swift │ ├── NonEmpty+ExpressibleByArrayLiteral.swift │ ├── NonEmpty+ExpressibleByDictionaryLiteral.swift │ ├── NonEmpty+RangeReplaceableCollection.swift │ ├── NonEmpty+SetAlgebra.swift │ ├── NonEmpty+String.swift │ └── NonEmpty.swift └── Tests └── NonEmptyTests └── NonEmptyTests.swift /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/Makefile -------------------------------------------------------------------------------- /NonEmpty.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/NonEmpty.playground/Contents.swift -------------------------------------------------------------------------------- /NonEmpty.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/NonEmpty.playground/contents.xcplayground -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/README.md -------------------------------------------------------------------------------- /Sources/NonEmpty/NonEmpty+Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/Sources/NonEmpty/NonEmpty+Dictionary.swift -------------------------------------------------------------------------------- /Sources/NonEmpty/NonEmpty+ExpressibleByArrayLiteral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/Sources/NonEmpty/NonEmpty+ExpressibleByArrayLiteral.swift -------------------------------------------------------------------------------- /Sources/NonEmpty/NonEmpty+ExpressibleByDictionaryLiteral.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/Sources/NonEmpty/NonEmpty+ExpressibleByDictionaryLiteral.swift -------------------------------------------------------------------------------- /Sources/NonEmpty/NonEmpty+RangeReplaceableCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/Sources/NonEmpty/NonEmpty+RangeReplaceableCollection.swift -------------------------------------------------------------------------------- /Sources/NonEmpty/NonEmpty+SetAlgebra.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/Sources/NonEmpty/NonEmpty+SetAlgebra.swift -------------------------------------------------------------------------------- /Sources/NonEmpty/NonEmpty+String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/Sources/NonEmpty/NonEmpty+String.swift -------------------------------------------------------------------------------- /Sources/NonEmpty/NonEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/Sources/NonEmpty/NonEmpty.swift -------------------------------------------------------------------------------- /Tests/NonEmptyTests/NonEmptyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pointfreeco/swift-nonempty/HEAD/Tests/NonEmptyTests/NonEmptyTests.swift --------------------------------------------------------------------------------