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.
parseLazyByteString :: Element a -> ByteString -> Either Text axml-parser XmlParser Parse XML lazy bytestring.
fromByteString :: ByteString -> BuilderHCodecs Codec.ByteString.Builder O(1). A Builder taking a ByteString, satisfying
toLazyByteString (fromByteString bs) = fromChunks [bs]
fromLazyByteString :: ByteString -> BuilderHCodecs Codec.ByteString.Builder O(1). A Builder taking a lazy ByteString, satisfying
toLazyByteString (fromLazyByteString bs) = bs
toLazyByteString :: Builder -> ByteStringHCodecs Codec.ByteString.Builder O(n). Extract a lazy ByteString from a Builder. The construction work takes place if and when the relevant part of the lazy ByteString is demanded.
getByteString :: Int -> Parser ByteStringHCodecs Codec.ByteString.Parser An efficient get method for strict ByteStrings. Fails if fewer than n bytes are left in the input.
getLazyByteString :: Int64 -> Parser ByteStringHCodecs Codec.ByteString.Parser An efficient get method for lazy ByteStrings. Does not fail if fewer than n bytes are left in the input.
getLazyByteStringNul :: Parser ByteStringHCodecs Codec.ByteString.Parser Get a lazy ByteString that is terminated with a NUL byte. Fails if it reaches the end of input without hitting a NUL.
getRemainingLazyByteString :: Parser ByteStringHCodecs Codec.ByteString.Parser Get the remaining bytes as a lazy ByteString
parseByteString :: Value a -> ByteString -> Either Text aaeson-value-parser AesonValueParser No documentation available.
shortByteString :: ShortByteString -> Poke sbytezap Bytezap.Poke.Derived Poke a ShortByteString.