Hoogle Search

Within LTS Haskell 24.43 (ghc-9.10.3)

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

  1. takeLazyByteString :: Parser ByteString

    attoparsec Data.Attoparsec.ByteString.Lazy

    Consume all remaining input and return it as a single string.

  2. class IsByteString t

    lens Data.ByteString.Lens

    Traversals for ByteStrings.

  3. builderToByteString :: forall (m :: Type -> Type) . PrimMonad m => ConduitT Builder ByteString m ()

    conduit Conduit

    Incrementally execute builders and pass on the filled chunks as bytestrings.

  4. builderToByteStringFlush :: forall (m :: Type -> Type) . PrimMonad m => ConduitT (Flush Builder) (Flush ByteString) m ()

    conduit Conduit

    Same as builderToByteString, but input and output are wrapped in Flush.

  5. builderToByteStringWith :: forall (m :: Type -> Type) . PrimMonad m => BufferAllocStrategy -> ConduitT Builder ByteString m ()

    conduit Conduit

    A conduit that incrementally executes builders and passes on the filled chunks as bytestrings to an inner sink. INV: All bytestrings passed to the inner sink are non-empty.

  6. builderToByteStringWithFlush :: forall (m :: Type -> Type) . PrimMonad m => BufferAllocStrategy -> ConduitT (Flush Builder) (Flush ByteString) m ()

    conduit Conduit

    No documentation available.

  7. unsafeBuilderToByteString :: forall (m :: Type -> Type) . PrimMonad m => ConduitT Builder ByteString m ()

    conduit Conduit

    Incrementally execute builders on the given buffer and pass on the filled chunks as bytestrings. Note that, if the given buffer is too small for the execution of a build step, a larger one will be allocated. WARNING: This conduit yields bytestrings that are NOT referentially transparent. Their content will be overwritten as soon as control is returned from the inner sink!

  8. builderToByteString :: forall (m :: Type -> Type) . PrimMonad m => ConduitT Builder ByteString m ()

    conduit Data.Conduit.Combinators

    Incrementally execute builders and pass on the filled chunks as bytestrings.

  9. builderToByteStringFlush :: forall (m :: Type -> Type) . PrimMonad m => ConduitT (Flush Builder) (Flush ByteString) m ()

    conduit Data.Conduit.Combinators

    Same as builderToByteString, but input and output are wrapped in Flush.

  10. builderToByteStringWith :: forall (m :: Type -> Type) . PrimMonad m => BufferAllocStrategy -> ConduitT Builder ByteString m ()

    conduit Data.Conduit.Combinators

    A conduit that incrementally executes builders and passes on the filled chunks as bytestrings to an inner sink. INV: All bytestrings passed to the inner sink are non-empty.

Page 33 of many | Previous | Next