Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. headWith :: Options -> Session -> String -> IO (Response ())

    wreq Network.Wreq.Session

    Session-specific version of headWith.

  2. head_ :: Session -> String -> IO (Response ())

    wreq Network.Wreq.Session

    Session-specific version of head_.

  3. headers :: Options -> [Header]

    wreq Network.Wreq.Types

    Additional headers to send with each request.

    let opts = defaults { headers = [("Accept", "*/*")] }
    getWith opts "http://httpbin.org/get"
    
    

  4. header :: forall (scheme :: Scheme) . ByteString -> ByteString -> Option scheme

    req Network.HTTP.Req

    Create an Option that adds a header. Note that if you mappend two headers with the same names the leftmost header will win. This means, in particular, that you cannot create a request with several headers of the same name.

  5. headerRedacted :: forall (scheme :: Scheme) . ByteString -> ByteString -> Option scheme

    req Network.HTTP.Req

    Same as header, but with redacted values on print.

  6. headers :: HasHeaders a => a -> Headers

    snap-core Snap.Core

    Retrieve the headers from a datatype that has headers.

  7. headers :: HasHeaders a => a -> Headers

    snap-core Snap.Internal.Core

    Retrieve the headers from a datatype that has headers.

  8. headers :: HasHeaders a => a -> Headers

    snap-core Snap.Internal.Http.Types

    Retrieve the headers from a datatype that has headers.

  9. headM :: forall (v :: Type -> Type) (n :: Natural) a m . (Vector v a, Monad m) => Vector v (1 + n) a -> m a

    vector-sized Data.Vector.Generic.Sized

    O(1) Yield the first element of a non-empty vector in a monad. See the documentation for indexM for an explanation of why this is useful.

  10. headM :: forall (n :: Natural) a m . (Prim a, Monad m) => Vector (1 + n) a -> m a

    vector-sized Data.Vector.Primitive.Sized

    O(1) Yield the first element of a non-empty vector in a monad. See the documentation for indexM for an explanation of why this is useful.

Page 32 of many | Previous | Next