Skip to content

Instantly share code, notes, and snippets.

@rssh
Created September 5, 2021 11:20
Show Gist options
  • Save rssh/10466715172b70e49a4870b6dc9c7392 to your computer and use it in GitHub Desktop.
Save rssh/10466715172b70e49a4870b6dc9c7392 to your computer and use it in GitHub Desktop.
Generator usage in dotty-cps-async
val stream = asyncStream[Stream[Throwable,Int]] { out =>
for(i <- 1 to N) {
out.emit(i)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment