├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── Flow.xcscheme ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── Flow │ ├── Conformances.swift │ ├── Extensions.swift │ ├── Flowable.swift │ └── Functions.swift └── Tests └── FlowTests └── FlowTests.swift /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexito4/Flow/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexito4/Flow/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexito4/Flow/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/Flow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexito4/Flow/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/Flow.xcscheme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexito4/Flow/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexito4/Flow/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexito4/Flow/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Flow/Conformances.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexito4/Flow/HEAD/Sources/Flow/Conformances.swift -------------------------------------------------------------------------------- /Sources/Flow/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexito4/Flow/HEAD/Sources/Flow/Extensions.swift -------------------------------------------------------------------------------- /Sources/Flow/Flowable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexito4/Flow/HEAD/Sources/Flow/Flowable.swift -------------------------------------------------------------------------------- /Sources/Flow/Functions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexito4/Flow/HEAD/Sources/Flow/Functions.swift -------------------------------------------------------------------------------- /Tests/FlowTests/FlowTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexito4/Flow/HEAD/Tests/FlowTests/FlowTests.swift --------------------------------------------------------------------------------