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
-- 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