Created
March 17, 2016 06:49
-
-
Save clinuxrulz/02789799ebb8fdc39fbd to your computer and use it in GitHub Desktop.
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
newtype SuspContT r m a = SuspContT ((a -> m (Either (Unit -> SuspContT r m a) r)) -> m (Either (Unit -> SuspContT r m a) r)) | |
runSuspContT :: forall r m a. (MonadRec m) => SuspContT r m a -> (a -> m r) -> m r | |
runSuspContT s f = tailRecM go s | |
where | |
go :: SuspContT r m a -> m (Either (SuspContT r m a) r) | |
go (SuspContT c) = do | |
( | |
either | |
(\thunk -> Left $ thunk unit) | |
(\r -> Right r) | |
) <$> c ((Right <$> _) <<< f) | |
toSuspContT :: forall r m a. (MonadRec m) => ContT r m a -> SuspContT r m a | |
toSuspContT c = | |
SuspContT (\k -> | |
let k2 a = | |
(k a) >>= ( | |
either | |
(\thunk -> runSuspContT (thunk unit) k2) | |
return | |
) | |
in | |
Right <$> runContT c k2 | |
) | |
fromSuspContT :: forall r m a. (MonadRec m) => SuspContT r m a -> ContT r m a | |
fromSuspContT c = ContT (\k -> runSuspContT c k) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment