Last active
April 23, 2018 11:33
-
-
Save dewey92/844ad406b72686c72c6e61e3e00c2ea5 to your computer and use it in GitHub Desktop.
Reader Interface
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
| interface Reader<D, A> { | |
| (deps: D): A | |
| } | |
| // Hindley-Milner style: | |
| // Reader d a = d -> a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment