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
Is this a bug?
((m/>=> maybe/just maybe/just) 0) CompilerException clojure.lang.ArityException: Wrong number of args (2) passed to: core/>=>, compiling:
(m/>=> maybe/just maybe/just 0) => #object[cats.builtin$reify__1037$fn__1040 0x10a68dba "cats.builtin$reify__1037$fn__1040@10a68dba"]
Here is an alternative implementation:
(defn >=> ([f g] (fn [x] (m/>>= (f x) g))) ([f g x] ((>=> f g) x))) ((>=> maybe/just maybe/just) 0) => #<Just 0> (>=> maybe/just maybe/just 0) => #<Just 0>
https://hackage.haskell.org/package/base-4.9.0.0/docs/src/Control.Monad.html#%3E%3D%3E
The text was updated successfully, but these errors were encountered:
Feel free to open a PR for that ;)
Sorry, something went wrong.
No branches or pull requests
Is this a bug?
Here is an alternative implementation:
https://hackage.haskell.org/package/base-4.9.0.0/docs/src/Control.Monad.html#%3E%3D%3E
The text was updated successfully, but these errors were encountered: