Skip to content

Instantly share code, notes, and snippets.

@ramunasjurgilas
Created January 30, 2020 11:30
Show Gist options
  • Save ramunasjurgilas/b8ea4bfdf9bec8b8cb12ce0cbd30ff42 to your computer and use it in GitHub Desktop.
Save ramunasjurgilas/b8ea4bfdf9bec8b8cb12ce0cbd30ff42 to your computer and use it in GitHub Desktop.
filter() as filtering operator
"KoBrA"
.publisher
.filter { $0.isUppercase }
.sink { print($0) }
// Output:
// K
// B
// A
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment