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. lazyByteString :: Serializer s => ByteString -> s

    data-serializer Data.Serializer

    Serialize a lazy ByteString. Must be a monoid homomorphism.

  2. shortByteString :: Serializer s => ShortByteString -> s

    data-serializer Data.Serializer

    Serialize a ShortByteString. Must be a monoid homomorphism.

  3. toByteString :: Serializable α => α -> ByteString

    data-serializer Data.Serializer

    A shorthand for buildByteString . put.

  4. toLazyByteString :: Serializable α => α -> ByteString

    data-serializer Data.Serializer

    A shorthand for buildLazyByteString . put.

  5. inlinesToByteString :: Inlines -> ByteString

    djot Djot.AST

    No documentation available.

  6. inlinesToByteString :: Inlines -> ByteString

    djot Djot.Html

    No documentation available.

  7. withByteString :: Parser s a -> Parser s (a, ByteString)

    djot Djot.Parse

    Returns result of parse together with the bytestring consumed.

  8. toLazyByteString :: Builder -> ByteString

    fast-builder Data.ByteString.FastBuilder

    Turn a Builder into a lazy ByteString. Performance hint: when the resulting ByteString does not fit in one chunk, this function forks a thread. Due to this, the performance degrades sharply if you use this function from a bound thread. Note in particular that the main thread is a bound thread when you use ghc -threaded. To avoid this problem, do one of these:

    • Make sure the resulting ByteString is consumed in an unbound thread. Consider using runInUnboundThread for this.
    • Use other function to run the Builder instead. Functions that don't return a lazy ByteString do not have this issue.
    • Link your program without -threaded.

  9. toLazyByteStringWith :: Int -> Int -> Builder -> ByteString

    fast-builder Data.ByteString.FastBuilder

    Like toLazyByteString, but allows the user to specify the initial and the subsequent desired buffer sizes.

  10. toStrictByteString :: Builder -> ByteString

    fast-builder Data.ByteString.FastBuilder

    Turn a Builder into a strict ByteString.

Page 73 of many | Previous | Next