Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. (.|) :: forall (m :: Type -> Type) a b c r . Monad m => ConduitT a b m () -> ConduitT b c m r -> ConduitT a c m r

    classy-prelude-conduit ClassyPrelude.Conduit

    Combine two Conduits together into a new Conduit (aka fuse). Output from the upstream (left) conduit will be fed into the downstream (right) conduit. Processing will terminate when downstream (right) returns. Leftover data returned from the right Conduit will be discarded. Equivalent to fuse and =$=, however the latter is deprecated and will be removed in a future version. Note that, while this operator looks like categorical composition (from Control.Category), there are a few reasons it's different:

    • The position of the type parameters to ConduitT do not match. We would need to change ConduitT i o m r to ConduitT r m i o, which would preclude a Monad or MonadTrans instance.
    • The result value from upstream and downstream are allowed to differ between upstream and downstream. In other words, we would need the type signature here to look like ConduitT a b m r -> ConduitT b c m r -> ConduitT a c m r.
    • Due to leftovers, we do not have a left identity in Conduit. This can be achieved with the underlying Pipe datatype, but this is not generally recommended. See https://stackoverflow.com/a/15263700.

  2. (.=) :: Eq t => Lens s s t t -> FieldDescription t -> SectionSpec s ()

    config-ini Data.Ini.Config.Bidir

    Associate a field description with a field. If this field is not present when parsing, it will attempt to fall back on a default, and if no default value is present, it will fail to parse. When serializing an INI file, this will produce all the comments associated with the field description followed by the value of the field in the.

  3. (.=?) :: Eq t => Lens s s (Maybe t) (Maybe t) -> FieldDescription t -> SectionSpec s ()

    config-ini Data.Ini.Config.Bidir

    Associate a field description with a field of type "Maybe a". When parsing, this field will be initialized to Nothing if it is not found, and to a Just value if it is. When serializing an INI file, this will try to serialize a value

  4. (./) :: forall x (xs :: [Type]) . x -> Many xs -> Many (x ': xs)

    data-diverse Data.Diverse.Many

    Infix version of consMany. Mnemonic: Element on the left is smaller ./ than the larger Many to the right.

  5. (./) :: forall x (xs :: [Type]) . x -> Many xs -> Many (x ': xs)

    data-diverse Data.Diverse.Many.Internal

    Infix version of consMany. Mnemonic: Element on the left is smaller ./ than the larger Many to the right.

  6. (.!=) :: Parser (Maybe a) -> a -> Parser a

    envy System.Envy

    For use with envMaybe for providing default arguments.

  7. (.=) :: Var a => String -> a -> EnvVar

    envy System.Envy

    Infix environment variable setter Smart constructor for producing types of EnvVar

  8. (.*) :: a -> ix -> Term a ix

    linear-programming Numeric.LinearProgramming.Common

    No documentation available.

  9. (.&&.) :: (a -> Bool) -> (a -> Bool) -> a -> Bool

    liquidhaskell-boot Language.Haskell.Liquid.Misc

    No documentation available.

  10. (.||.) :: (a -> Bool) -> (a -> Bool) -> a -> Bool

    liquidhaskell-boot Language.Haskell.Liquid.Misc

    No documentation available.

Page 38 of many | Previous | Next