We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(Functions that return a monadic type -> e.g. see #255)
The text was updated successfully, but these errors were encountered:
Example
Define a function that creates a Stream
import cyclops.monads.Witness.reactiveSeq; Kleisli<reactiveSeq, Integer, Integer> k1 = t -> ReactiveSeq.iterate(0,i->i<t, i->i+1) .anyM(); k1.flatMap(i-> t-> ReactiveSeq.of(t+i) .anyM()) .apply(10) .forEach(System.out::println); 10 11 12 13 14 15 16 17 18 19
Sorry, something went wrong.
Releaed in 2.0.0-MI4
No branches or pull requests
(Functions that return a monadic type -> e.g. see #255)
The text was updated successfully, but these errors were encountered: