Created
October 2, 2014 18:15
-
-
Save YoEight/0541aa293effbfff8d02 to your computer and use it in GitHub Desktop.
A different State encoding solution (https://gist.github.com/YoEight/bfaf9acbfe570820f6f2)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE RankNTypes #-} | |
newtype State s a = State { runState :: forall r. s -> (a -> s -> r) -> r } | |
stateReturn :: a -> State s a | |
stateReturn a = State $ \s k -> k a s | |
stateMap :: (a -> b) -> State s a -> State s b | |
stateMap f (State sa) = State $ \s kb -> sa s (kb . f) | |
stateBind :: (a -> State s b) -> State s a -> State s b | |
stateBind f (State sa) = State $ \s kb -> sa s (\a s' -> runState (f a) s' kb) | |
stateGet :: State s s | |
stateGet = State $ \s k -> k s s | |
statePut :: s -> State s () | |
statePut s = State $ \_ k -> k () s | |
stateModify :: (s -> s) -> State s () | |
stateModify f = stateBind (statePut . f) stateGet | |
execState :: s -> State s a -> s | |
execState s st = runState st s (flip const) | |
evalState :: s -> State s a -> a | |
evalState s st = runState st s const |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment