Skip to content

Instantly share code, notes, and snippets.

@masliukivskyi
Last active May 3, 2020 20:31
Show Gist options
  • Save masliukivskyi/7e9e32306a7b5e527b45d75aae60acf9 to your computer and use it in GitHub Desktop.
Save masliukivskyi/7e9e32306a7b5e527b45d75aae60acf9 to your computer and use it in GitHub Desktop.
Basics of Combine
let pets = ["🐶", "🐱", "🐭", "🐹"].publisher // pets type is Publishers.Sequence<Array<String>, Never>
pets.sink { (value) in
print(value)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment