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
Transducer : (acc, s1, s2, elem2, elem1: Type) -> Type | |
Transducer acc s1 s2 elem2 elem1 = | |
Reducer s1 acc elem1 -- Input reducing function | |
-> Reducer s2 acc elem2 -- Output reducing function |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment