Hoogle Search
Within LTS Haskell 24.42 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
.:? ) :: OnObject o a => Text -> Parser a -> o (Maybe a)json-stream Data.JsonStream.Parser Returns Nothing if value is null or does not exist or match. Otherwise returns Just value.
key .:? val = optional (key .: val)
It could be similarly used in the objectOf parser(
$:: ) :: (a -> b) -> ((a -> b) -> c -> d) -> c -> dpointless-fun Data.Function.Pointless Lift a function for multicomposition. This is like the :: of a type signature.
(
.: ) :: (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.
(
.: ) :: (a -> b) -> (c -> d -> a) -> c -> d -> bxmonad-contrib XMonad.Prelude Multivariable composition.
f .: g ≡ (f .) . g ≡ \c d -> f (g c d)