Created
August 24, 2020 16:30
-
-
Save lukeredpath/8072faa389dfe64a6bd43cd92f50ee25 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct TaggedOutput<Output> { | |
let token: AnyHashable | |
let output: Output | |
} | |
struct Effect<Output>: Publisher { | |
typealias Failure = Never | |
let base: AnyPublisher<TaggedOutput<Output>, Failure> | |
let token: AnyHashable | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment