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.
lazyByteString :: LazyByteString -> Builderbytestring 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.
lazyByteStringHex :: LazyByteString -> Builderbytestring Data.ByteString.Builder Encode each byte of a LazyByteString using its fixed-width hex encoding.
lazyByteStringCopy :: LazyByteString -> Builderbytestring Data.ByteString.Builder.Extra Construct a Builder that copies the LazyByteString.
lazyByteStringInsert :: LazyByteString -> Builderbytestring Data.ByteString.Builder.Extra Construct a Builder that inserts all chunks of the LazyByteString directly.
lazyByteStringThreshold :: Int -> LazyByteString -> Builderbytestring Data.ByteString.Builder.Extra Construct a Builder that uses the thresholding strategy of byteStringThreshold for each chunk of the LazyByteString.
lazyByteString :: LazyByteString -> Builderbytestring 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.
lazyByteStringCopy :: LazyByteString -> Builderbytestring Data.ByteString.Builder.Internal Construct a Builder that copies the LazyByteString.
lazyByteStringInsert :: LazyByteString -> Builderbytestring Data.ByteString.Builder.Internal Construct a Builder that inserts all chunks of the LazyByteString directly.
lazyByteStringThreshold :: Int -> LazyByteString -> Builderbytestring Data.ByteString.Builder.Internal Construct a Builder that uses the thresholding strategy of byteStringThreshold for each chunk of the LazyByteString.
toLazyByteString :: Builder -> LazyByteStringbytestring 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.