Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
.: ) :: (c -> d) -> (a -> b -> c) -> a -> b -> dpointless-fun Data.Function.Pointless Binary composition: pass two args to the right argument before composing.
(f .: g) x y = f (g x y)
or,f .: g = curry (f . uncurry g)
This is the same as the common idiom (f .) . g but more easily extended to multiple uses, due to the fixity declaration.-
unification-fd Control.Unification -
unification-fd Control.Unification -
unification-fd Control.Unification.Ranked -
verset Verset An infix form of fromMaybe with arguments flipped.
(
=: ) :: SettableClass s x y => s c -> y -> Arr c cxmonad-contrib XMonad.Config.Prime This lets you modify an attribute.
(
.: ) :: (a -> b) -> (c -> d -> a) -> c -> d -> bxmonad-contrib XMonad.Prelude Multivariable composition.
f .: g ≡ (f .) . g ≡ \c d -> f (g c d)