Skip to content

Instantly share code, notes, and snippets.

@jasdev
Last active March 25, 2020 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasdev/0cf0663c4f54446b046f946b1f7af5a9 to your computer and use it in GitHub Desktop.
Save jasdev/0cf0663c4f54446b046f946b1f7af5a9 to your computer and use it in GitHub Desktop.
Postfix type erasure in Combine.
import Combine
postfix operator ^
postfix func ^ <Publisher: Combine.Publisher>(_ publisher: Publisher)
-> AnyPublisher<Publisher.Output, Publisher.Failure> {
publisher.eraseToAnyPublisher()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment