Skip to content

Instantly share code, notes, and snippets.

@hmaurer
Created March 6, 2014 18:20
Show Gist options
  • Save hmaurer/9396092 to your computer and use it in GitHub Desktop.
Save hmaurer/9396092 to your computer and use it in GitHub Desktop.
apply :: (t -> a) -> (t -> b) -> (a, b)
apply f g x = (f x, g x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment