Skip to content

Instantly share code, notes, and snippets.

@jasdev
Last active March 30, 2020 18:47
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/b334cdb3c79efc50fef555b223df5cdd to your computer and use it in GitHub Desktop.
Save jasdev/b334cdb3c79efc50fef555b223df5cdd to your computer and use it in GitHub Desktop.
`Publisher.materialize` scaffolding.
extension Publisher {
func materialize() -> AnyPublisher<Event<Output, Failure>, Never> { /// (1) Again,
/// leaving the `AnyPublisher` here as a placeholder, for now.
fatalError("To be implemented.")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment