Hoogle Search
Within LTS Haskell 24.20 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
grisette Grisette.Unified.Lib.Control.Monad >=> with MergingStrategy knowledge propagation.
(
.>> ) :: (MonadTryMerge m, Mergeable a, Mergeable b) => m a -> m b -> m bgrisette Grisette.Unified.Lib.Control.Monad >> with MergingStrategy knowledge propagation. This is usually more efficient than calling the original >> and merge the results.
(
.>>= ) :: (MonadTryMerge u, Mergeable a, Mergeable b) => u a -> (a -> u b) -> u bgrisette Grisette.Unified.Lib.Control.Monad >>= with MergingStrategy knowledge propagation.
(
.$> ) :: (TryMerge f, Mergeable a, Mergeable b, Functor f) => f a -> b -> f bgrisette Grisette.Unified.Lib.Data.Functor $> with MergingStrategy knowledge propagation.
(
.<$ ) :: (TryMerge f, Mergeable a, Mergeable b, Functor f) => b -> f a -> f bgrisette Grisette.Unified.Lib.Data.Functor <$ with MergingStrategy knowledge propagation.
(
.<$> ) :: (TryMerge f, Mergeable a, Mergeable b, Functor f) => (a -> b) -> f a -> f bgrisette Grisette.Unified.Lib.Data.Functor <$> with MergingStrategy knowledge propagation.
(
.<&> ) :: (TryMerge f, Mergeable a, Mergeable b, Functor f) => f a -> (a -> b) -> f bgrisette Grisette.Unified.Lib.Data.Functor <&> with MergingStrategy knowledge propagation.
(
.&&. ) :: Pattern -> Pattern -> Patternhakyll Hakyll.Core.Identifier.Pattern && for patterns: the given identifier must match both subterms
(
.||. ) :: Pattern -> Pattern -> Patternhakyll Hakyll.Core.Identifier.Pattern || for patterns: the given identifier must match any subterm
(
.: ) :: FromJSON a => Object -> Key -> Parser ahledger-web Hledger.Web.Import Retrieve the value associated with the given key of an Object. The result is empty if the key is not present or the value cannot be converted to the desired type. This accessor is appropriate if the key and value must be present in an object for it to be valid. If the key and value are optional, use .:? instead.