Skip to content

Instantly share code, notes, and snippets.

@ankittlp
Created May 25, 2020 10:08
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 ankittlp/f4a421963e94263e426263e413f70efd to your computer and use it in GitHub Desktop.
Save ankittlp/f4a421963e94263e426263e413f70efd to your computer and use it in GitHub Desktop.
Combine: Pipeline
import Combine
let numbers = (1...20).publisher
numbers.filter { $0 % 2 == 0 }.collect()
.sink {
print($0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment