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. noByteString :: Maybe ByteString

    jsaddle-dom JSDOM.Types

    No documentation available.

  2. 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"]
    

  3. 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.

  4. safeByteString :: Int -> Parser ByteString

    json-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.

  5. argByteString :: ByteString -> Arg

    libffi Foreign.LibFFI.Types

    Like argString, but for ByteString's.

  6. argConstByteString :: ByteString -> Arg

    libffi Foreign.LibFFI.Types

    Like argByteString, but changing the string from C breaks referential transparency.

  7. retByteString :: RetType ByteString

    libffi Foreign.LibFFI.Types

    Like retString, but for ByteString's

  8. retMallocByteString :: RetType ByteString

    libffi Foreign.LibFFI.Types

    Make a ByteString out of the returned char *. The char * will be free(3)ed when the ByteString is garbage collected.

  9. strByteStringCannotOpenFile :: FilePath -> String

    ogma-extra Data.ByteString.Extra

    Cannot-open-file message.

  10. strByteStringFileNotFound :: FilePath -> String

    ogma-extra Data.ByteString.Extra

    File-not-found message.

Page 114 of many | Previous | Next