Math.Haskellator.Internal.Utils.Composition
(.:) :: (c -> d) -> (a -> b -> c) -> a -> b -> d infixr 8 Source #
Compose two functions. f .: g is similar to f . g except that g will be fed two arguments instead of one before handing its result to f.
f .: g
f . g
g
f