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.
-
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.
(
.= ) :: 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.
(
.=? ) :: 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
(
./ ) :: 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.
(
./ ) :: 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.
(
.!= ) :: Parser (Maybe a) -> a -> Parser aenvy System.Envy For use with envMaybe for providing default arguments.
(
.= ) :: Var a => String -> a -> EnvVarenvy System.Envy Infix environment variable setter Smart constructor for producing types of EnvVar
-
linear-programming Numeric.LinearProgramming.Common No documentation available.
(
.&&. ) :: (a -> Bool) -> (a -> Bool) -> a -> Boolliquidhaskell-boot Language.Haskell.Liquid.Misc No documentation available.
(
.||. ) :: (a -> Bool) -> (a -> Bool) -> a -> Boolliquidhaskell-boot Language.Haskell.Liquid.Misc No documentation available.