Skip to content

Instantly share code, notes, and snippets.

@fumieval
Created June 3, 2012 06:12
Show Gist options
  • Save fumieval/2862195 to your computer and use it in GitHub Desktop.
Save fumieval/2862195 to your computer and use it in GitHub Desktop.
import Control.Arrow (arr, (&&&), (>>>), app)
import Prelude (id, const, uncurry)
flip = (const const >>> (>>>)) &&& (&&&) >>> app >>> (>>> (>>> app))
(.) = flip (>>>)
curry = const ((,) >>>) &&& (.) >>> app
fst = uncurry const
snd = uncurry (flip const)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment