Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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