Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. badRequest400 :: Status

    http-types Network.HTTP.Types

    Bad Request 400

  2. lengthRequired411 :: Status

    http-types Network.HTTP.Types

    Length Required 411

  3. networkAuthenticationRequired511 :: Status

    http-types Network.HTTP.Types

    Network Authentication Required 511 (RFC 6585)

  4. parseQuery :: ByteString -> Query

    http-types Network.HTTP.Types

    Split out the query string into a list of keys and values. A few importants points:

    • The result returned is still bytestrings, since we perform no character decoding here. Most likely, you will want to use UTF-8 decoding, but this is left to the user of the library.
    • Percent decoding errors are ignored. In particular, "%Q" will be output as "%Q".
    • It decodes '+' characters to ' '

  5. parseQueryReplacePlus :: Bool -> ByteString -> Query

    http-types Network.HTTP.Types

    Same functionality as parseQuery, but with the option to decode '+' characters to ' ' or to preserve any '+' encountered. If you want to replace any '+' with a space, use True.

  6. parseQueryText :: ByteString -> QueryText

    http-types Network.HTTP.Types

    Parse a QueryText from a ByteString. See parseQuery for details.

    queryToQueryText . parseQuery
    

  7. parseSimpleQuery :: ByteString -> SimpleQuery

    http-types Network.HTTP.Types

    Parse SimpleQuery from a ByteString. This uses parseQuery under the hood, and will transform any Nothing values into an empty ByteString.

  8. paymentRequired402 :: Status

    http-types Network.HTTP.Types

    Payment Required 402

  9. preconditionRequired428 :: Status

    http-types Network.HTTP.Types

    Precondition Required 428 (RFC 6585)

  10. proxyAuthenticationRequired407 :: Status

    http-types Network.HTTP.Types

    Proxy Authentication Required 407

Page 145 of many | Previous | Next