Skip to content

Instantly share code, notes, and snippets.

@paigeshin
Created February 16, 2023 00:15
Show Gist options
  • Select an option

  • Save paigeshin/ca3e5fca26bf486e355de572e48f2ccc to your computer and use it in GitHub Desktop.

Select an option

Save paigeshin/ca3e5fca26bf486e355de572e48f2ccc to your computer and use it in GitHub Desktop.
import Foundation
import Combine
let publisher = ["A", "B", "C", "D"].publisher
publisher
.contains("C")
.sink {
print($0) // true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment