Created
August 23, 2018 00:03
-
-
Save jjant/d96aa766e10f2ca244f59e0fa4f2d977 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
| map : (a -> b) -> Employee a -> Employee b | |
| map f (Employee sharedData a) = | |
| Employee sharedData (f a) | |
| replace : b -> Employee a -> Employee b | |
| replace b = | |
| map (\_ -> b) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment