Skip to content

Instantly share code, notes, and snippets.

@techtangents
Created May 1, 2014 04:41
Show Gist options
  • Save techtangents/37e4f79c6dc167e11979 to your computer and use it in GitHub Desktop.
Save techtangents/37e4f79c6dc167e11979 to your computer and use it in GitHub Desktop.
infixl 4 <&&
(<&&) :: Functor f => f (a -> b) -> a -> f b
(<&&) = \f a -> fmap ($ a) f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment