Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

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

  1. data ConduitT i o (m :: Type -> Type) r

    conduit Data.Conduit

    Core datatype of the conduit package. This type represents a general component which can consume a stream of input values i, produce a stream of output values o, perform actions in the m monad, and produce a final result r. The type synonyms provided here are simply wrappers around this type. Since 1.3.0

  2. type ConduitM = ConduitT

    conduit Data.Conduit.Internal

    Same as ConduitT, for backwards compat

  3. newtype ConduitT i o (m :: Type -> Type) r

    conduit Data.Conduit.Internal

    Core datatype of the conduit package. This type represents a general component which can consume a stream of input values i, produce a stream of output values o, perform actions in the m monad, and produce a final result r. The type synonyms provided here are simply wrappers around this type. Since 1.3.0

  4. ConduitT :: (forall b . () => (r -> Pipe i i o () m b) -> Pipe i i o () m b) -> ConduitT i o (m :: Type -> Type) r

    conduit Data.Conduit.Internal

    No documentation available.

  5. data ConduitWithStream i o (m :: Type -> Type) r

    conduit Data.Conduit.Internal.Fusion

    No documentation available.

  6. type ConduitErrorHandler (m :: Type -> Type) o = String -> ConduitT ByteString o m ()

    cereal-conduit Data.Conduit.Cereal.Internal

    What should we do if the Get fails?

  7. data ConduitParser i (m :: Type -> Type) a

    conduit-parse Data.Conduit.Parser

    Core type of the package. This is basically a Sink with a parsing state.

  8. data ConduitParserException

    conduit-parse Data.Conduit.Parser

    No documentation available.

  9. conduitVector :: forall v a (m :: Type -> Type) . (Vector v a, PrimMonad m) => Int -> ConduitT a (v a) m ()

    conduit Data.Conduit.Combinators

    Break up a stream of values into vectors of size n. The final vector may be smaller than n if the total number of values is not a strict multiple of n. No empty vectors will be yielded.

  10. conduitToPipe :: forall (m :: Type -> Type) i o l u . Monad m => ConduitT i o m () -> Pipe l i o u m ()

    conduit Data.Conduit.Internal

    No documentation available.

Page 2 of many | Previous | Next