Last active
August 1, 2017 16:14
-
-
Save deque-blog/2b88789c5649abdf41151f932b065b0e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
-- Type of the `onStep` argument provided to `statelessTransducer` | |
onStep : Step s acc b -> Step s acc a | |
-- Type of `Step` (quick reminder) | |
Step state acc x = acc -> x -> State state (Status acc) | |
-- Type of `onStep` (substituded) | |
onStep : Step s acc b -> acc -> a -> State s (Status acc) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment