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.

  1. (.>=>) :: (MonadTryMerge m, Mergeable a, Mergeable b, Mergeable c) => (a -> m b) -> (b -> m c) -> a -> m c

    grisette Grisette.Unified.Lib.Control.Monad

    >=> with MergingStrategy knowledge propagation.

  2. (.>>) :: (MonadTryMerge m, Mergeable a, Mergeable b) => m a -> m b -> m b

    grisette Grisette.Unified.Lib.Control.Monad

    >> with MergingStrategy knowledge propagation. This is usually more efficient than calling the original >> and merge the results.

  3. (.>>=) :: (MonadTryMerge u, Mergeable a, Mergeable b) => u a -> (a -> u b) -> u b

    grisette Grisette.Unified.Lib.Control.Monad

    >>= with MergingStrategy knowledge propagation.

  4. (.$>) :: (TryMerge f, Mergeable a, Mergeable b, Functor f) => f a -> b -> f b

    grisette Grisette.Unified.Lib.Data.Functor

    $> with MergingStrategy knowledge propagation.

  5. (.<$) :: (TryMerge f, Mergeable a, Mergeable b, Functor f) => b -> f a -> f b

    grisette Grisette.Unified.Lib.Data.Functor

    <$ with MergingStrategy knowledge propagation.

  6. (.<$>) :: (TryMerge f, Mergeable a, Mergeable b, Functor f) => (a -> b) -> f a -> f b

    grisette Grisette.Unified.Lib.Data.Functor

    <$> with MergingStrategy knowledge propagation.

  7. (.<&>) :: (TryMerge f, Mergeable a, Mergeable b, Functor f) => f a -> (a -> b) -> f b

    grisette Grisette.Unified.Lib.Data.Functor

    <&> with MergingStrategy knowledge propagation.

  8. (.&&.) :: Pattern -> Pattern -> Pattern

    hakyll Hakyll.Core.Identifier.Pattern

    && for patterns: the given identifier must match both subterms

  9. (.||.) :: Pattern -> Pattern -> Pattern

    hakyll Hakyll.Core.Identifier.Pattern

    || for patterns: the given identifier must match any subterm

  10. (.:) :: FromJSON a => Object -> Key -> Parser a

    hledger-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.

Page 67 of many | Previous | Next