Skip to content

Instantly share code, notes, and snippets.

@jjant
Created August 23, 2018 00:03
Show Gist options
  • Select an option

  • Save jjant/d96aa766e10f2ca244f59e0fa4f2d977 to your computer and use it in GitHub Desktop.

Select an option

Save jjant/d96aa766e10f2ca244f59e0fa4f2d977 to your computer and use it in GitHub Desktop.
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