├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── CombineAsyncable │ ├── AnyCancellable+Cancel.swift │ ├── Future+Task.swift │ ├── Publisher+Task.swift │ └── Sequence+Store.swift └── Tests ├── CombineAsyncableTests ├── PublisherTests.swift ├── StubError.swift └── XCTestManifests.swift └── LinuxMain.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CombineAsyncable/AnyCancellable+Cancel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/Sources/CombineAsyncable/AnyCancellable+Cancel.swift -------------------------------------------------------------------------------- /Sources/CombineAsyncable/Future+Task.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/Sources/CombineAsyncable/Future+Task.swift -------------------------------------------------------------------------------- /Sources/CombineAsyncable/Publisher+Task.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/Sources/CombineAsyncable/Publisher+Task.swift -------------------------------------------------------------------------------- /Sources/CombineAsyncable/Sequence+Store.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/Sources/CombineAsyncable/Sequence+Store.swift -------------------------------------------------------------------------------- /Tests/CombineAsyncableTests/PublisherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/Tests/CombineAsyncableTests/PublisherTests.swift -------------------------------------------------------------------------------- /Tests/CombineAsyncableTests/StubError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/Tests/CombineAsyncableTests/StubError.swift -------------------------------------------------------------------------------- /Tests/CombineAsyncableTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/Tests/CombineAsyncableTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crane-hiromu/CombineAsyncable/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------