Hoogle Search

Within LTS Haskell 24.8 (ghc-9.10.2)

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

  1. lazyByteString :: LazyByteString -> Builder

    bytestring Data.ByteString.Builder

    Create a Builder denoting the same sequence of bytes as a lazy LazyByteString. The Builder inserts large chunks of the LazyByteString directly, but copies small ones to ensure that the generated chunks are large on average.

  2. lazyByteStringHex :: LazyByteString -> Builder

    bytestring Data.ByteString.Builder

    Encode each byte of a LazyByteString using its fixed-width hex encoding.

  3. lazyByteStringCopy :: LazyByteString -> Builder

    bytestring Data.ByteString.Builder.Extra

    Construct a Builder that copies the LazyByteString.

  4. lazyByteStringInsert :: LazyByteString -> Builder

    bytestring Data.ByteString.Builder.Extra

    Construct a Builder that inserts all chunks of the LazyByteString directly.

  5. lazyByteStringThreshold :: Int -> LazyByteString -> Builder

    bytestring Data.ByteString.Builder.Extra

    Construct a Builder that uses the thresholding strategy of byteStringThreshold for each chunk of the LazyByteString.

  6. lazyByteString :: LazyByteString -> Builder

    bytestring Data.ByteString.Builder.Internal

    Create a Builder denoting the same sequence of bytes as a lazy LazyByteString. The Builder inserts large chunks of the LazyByteString directly, but copies small ones to ensure that the generated chunks are large on average.

  7. lazyByteStringCopy :: LazyByteString -> Builder

    bytestring Data.ByteString.Builder.Internal

    Construct a Builder that copies the LazyByteString.

  8. lazyByteStringInsert :: LazyByteString -> Builder

    bytestring Data.ByteString.Builder.Internal

    Construct a Builder that inserts all chunks of the LazyByteString directly.

  9. lazyByteStringThreshold :: Int -> LazyByteString -> Builder

    bytestring Data.ByteString.Builder.Internal

    Construct a Builder that uses the thresholding strategy of byteStringThreshold for each chunk of the LazyByteString.

  10. toLazyByteString :: Builder -> LazyByteString

    bytestring Data.ByteString.Builder

    Execute a Builder and return the generated chunks as a LazyByteString. The work is performed lazy, i.e., only when a chunk of the LazyByteString is forced.

Page 2 of many | Previous | Next