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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Docs for fapply
cats/src/cats/core.cljc
Line 190 in 4367a18
Shouldn't it be the same context as af?
the same context as af
Using cats 2.2.0:
(m/fapply (maybe/just inc) (either/left 5)) => #<Just 6> (m/fapply (maybe/just inc) (either/right 5)) => #<Just 6> (m/fapply (maybe/nothing) (either/right 5)) => #<Nothing>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Docs for fapply
cats/src/cats/core.cljc
Line 190 in 4367a18
Shouldn't it be
the same context as af
?Using cats 2.2.0:
The text was updated successfully, but these errors were encountered: