pointlessness

This commit is contained in:
Joey Hess 2012-06-29 10:00:05 -04:00
parent cd0ab91c91
commit 29335bf326
5 changed files with 20 additions and 3 deletions

16
Utility/Applicative.hs Normal file
View file

@ -0,0 +1,16 @@
{- applicative stuff
-
- Copyright 2012 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Utility.Applicative where
{- Like <$> , but supports one level of currying.
-
- foo v = bar <$> action v == foo = bar <$$> action
-}
(<$$>) :: Functor f => (a -> b) -> (c -> f a) -> c -> f b
f <$$> v = fmap f . v
infixr 4 <$$>