summaryrefslogtreecommitdiff
path: root/Utility/Applicative.hs
blob: 64400c801218bf3146098f09e598f9732b931da9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 <$$>