-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
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
Re-add state monad #210
Re-add state monad #210
Conversation
src/cats/monad/state.cljc
Outdated
(return y))) | ||
(def initial-state 1) | ||
(run-state computation initial-state) | ||
This should be return something to: #<Pair [1 2]>" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should return #<Pair [1 2]>
is there any way to upvote this? :) |
@niwinz Can we merge this? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🥇
98cdc50
to
480e525
Compare
this makes me a bit happy - i was using a private version of the old state-monad i'm also using a private version of the what dyall think of reviving the monad transformer stuff too ? |
I never found myself in need of using a monad transformer in Clojure, but I don't see why not revive them. |
Can we also update the docs to reflect the new monad? Keep up the good work guys! |
* Change either monad to record This allows us to use `clojure.spec` with it :) ```clojure (s/def :un/right int?) (s/def :un/left string?) (s/def :either/spec (s/and either/either? (s/or :right (s/and either/right? (s/keys :req-un [:un/right])) :left (s/and either/left? (s/keys :req-un [:un/left]))))) ``` I'm still not sure how to make it compatible with generators. * Turn maybe monad into record * Turn identity into record * Exception monad type -> record * Add identity predicate * Fix issue of dynamic context overriding default context * Fix comment indentation * convert maybe/maybe from func to macro to delay arg eval * cond -> boolean logic refactor * Add test info to README * require maybe macro in cljs; only check assertion error in clj * Test delayed maybe/maybe arg evaluation in cljs * change test case to pass valid argument type to 'maybe' function * test to ensure `default` isn't evaluated when unused in `maybe` * Fix typo on 'Pattern matching' link to cats.match * Update dependencies. * Set version to 2.2.0 * Rename Success/Failure value names to better match Left/Right and Just * Re-add state monad (funcool#210) * re-add state monad
When the state monad was re-added in funcool/cats#210, `*-state` functions were renamed to `*` (funcool/cats#210 (comment)) but `run-state` was not updated to `run` in a few docstrings.
This PR readds the state monad implementation from the previous version of cats (https://github.com/funcool/cats/blob/1.2.1/src/cats/labs/state.cljc) with some changes. The changes were:
*-state
to*
to avoid useless repetitionwrap-fn
)