Last active
May 3, 2020 20:31
-
-
Save masliukivskyi/7e9e32306a7b5e527b45d75aae60acf9 to your computer and use it in GitHub Desktop.
Basics of Combine
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
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