Skip to content

Instantly share code, notes, and snippets.

@masliukivskyi
Created April 27, 2020 23:11
Show Gist options
  • Save masliukivskyi/73cc06c428996a72e8cab48ac0313673 to your computer and use it in GitHub Desktop.
Save masliukivskyi/73cc06c428996a72e8cab48ac0313673 to your computer and use it in GitHub Desktop.
Basics of Combine
let just = Just("First publisher!")
let sequence = Publishers.Sequence<[String], Never>(sequence: ["Hello", "World"])
just.sink { (value) in
print(value)
}
sequence.sink { (value) in
print(value)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment