Created
April 27, 2020 23:11
-
-
Save masliukivskyi/73cc06c428996a72e8cab48ac0313673 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 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