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. getRemainingLazyByteString :: Get ByteString

    binary Data.Binary.Get

    Get the remaining bytes as a lazy ByteString. Note that this can be an expensive function to use as it forces reading all input and keeping the string in-memory.

  2. getByteString :: Int -> Get ByteString

    binary Data.Binary.Get.Internal

    An efficient get method for strict ByteStrings. Fails if fewer than n bytes are left in the input. If n <= 0 then the empty string is returned.

  3. putByteString :: ByteString -> Put

    binary Data.Binary.Put

    An efficient primitive to write a strict ByteString into the output buffer. It flushes the current buffer, and writes the argument into a new chunk.

  4. putLazyByteString :: ByteString -> Put

    binary Data.Binary.Put

    Write a lazy ByteString efficiently, simply appending the lazy ByteString chunks to the output buffer

  5. putShortByteString :: ShortByteString -> Put

    binary Data.Binary.Put

    Write ShortByteString to the buffer

  6. takeByteString :: Parser ByteString

    attoparsec Data.Attoparsec.ByteString

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

  7. takeLazyByteString :: Parser ByteString

    attoparsec Data.Attoparsec.ByteString

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

  8. takeByteString :: Parser ByteString

    attoparsec Data.Attoparsec.ByteString.Char8

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

  9. takeLazyByteString :: Parser ByteString

    attoparsec Data.Attoparsec.ByteString.Char8

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

  10. takeByteString :: Parser ByteString

    attoparsec Data.Attoparsec.ByteString.Lazy

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

Page 32 of many | Previous | Next