haskellator-0.1.0.0: SI-Units supporting calculator
Safe HaskellSafe-Inferred
LanguageHaskell2010

Math.Haskellator.Internal.Utils.Composition

Synopsis
  • (.:) :: (c -> d) -> (a -> b -> c) -> a -> b -> d

Documentation

(.:) :: (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.