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.
noByteString :: Maybe ByteStringjsaddle-dom JSDOM.Types No documentation available.
parseByteString :: Parser a -> ByteString -> [a]json-stream Data.JsonStream.Parser Parse a bytestring, generate lazy list of parsed values. If an error occurs, throws an exception.
>>> parseByteString (arrayOf integer) "[1,2,3,4]" :: [Int] [1,2,3,4]
>>> parseByteString (arrayOf ("name" .: string)) "[{\"name\":\"KIWI\"}, {\"name\":\"BIRD\"}]" ["KIWI","BIRD"]parseLazyByteString :: Parser a -> ByteString -> [a]json-stream Data.JsonStream.Parser Parse a lazy bytestring, generate lazy list of parsed values. If an error occurs, throws an exception.
safeByteString :: Int -> Parser ByteStringjson-stream Data.JsonStream.Parser Stops parsing string after the limit is reached. The string will not be matched if it exceeds the size. The size is the size of escaped string including escape characters. The return value is not unescaped.
argByteString :: ByteString -> Arglibffi Foreign.LibFFI.Types Like argString, but for ByteString's.
argConstByteString :: ByteString -> Arglibffi Foreign.LibFFI.Types Like argByteString, but changing the string from C breaks referential transparency.
retByteString :: RetType ByteStringlibffi Foreign.LibFFI.Types Like retString, but for ByteString's
retMallocByteString :: RetType ByteStringlibffi Foreign.LibFFI.Types Make a ByteString out of the returned char *. The char * will be free(3)ed when the ByteString is garbage collected.
strByteStringCannotOpenFile :: FilePath -> Stringogma-extra Data.ByteString.Extra Cannot-open-file message.
strByteStringFileNotFound :: FilePath -> Stringogma-extra Data.ByteString.Extra File-not-found message.