Skip to content

Instantly share code, notes, and snippets.

@Arrlindii
Last active June 22, 2019 19:59
Show Gist options
  • Select an option

  • Save Arrlindii/d5dcbe0a4405f55c0ad2d2d609cacd8e to your computer and use it in GitHub Desktop.

Select an option

Save Arrlindii/d5dcbe0a4405f55c0ad2d2d609cacd8e to your computer and use it in GitHub Desktop.
_ = Publishers.Sequence(sequence: [1,2,4])
.map { $0 * 10 }
.flatMap { Publishers.Just($0) }
.sink(receiveValue: {
print($0)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment