Hoogle Search

Within LTS Haskell 24.58 (ghc-9.10.3)

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

  1. requestHeader :: MonadCGI m => String -> m (Maybe String)

    cgi Network.CGI

    Gets the value of the request header with the given name. The header name is case-insensitive. Example:

    requestHeader "User-Agent"
    

  2. setHeader :: MonadCGI m => String -> String -> m ()

    cgi Network.CGI

    Add a response header. Example:

    setHeader "Content-type" "text/plain"
    

  3. cgiAddHeader :: MonadCGI m => HeaderName -> String -> m ()

    cgi Network.CGI.Monad

    Add a response header.

  4. thead :: forall (n :: Nat) a . RTree n a -> a

    clash-prelude Clash.Sized.RTree

    Extract the first element of a tree The first element is defined to be the bottom-left leaf.

    >>> thead $ BR (BR (LR 1) (LR 2)) (BR (LR 3) (LR 4))
    1
    

  5. getHeaded :: Headed a -> a

    colonnade Colonnade

    No documentation available.

  6. mapHeadedness :: (forall x . () => h x -> h' x) -> Colonnade h a c -> Colonnade h' a c

    colonnade Colonnade

    Map over the header type of a Colonnade.

  7. mapHeaderContent :: forall (h :: Type -> Type) c a . Functor h => (c -> c) -> Colonnade h a c -> Colonnade h a c

    colonnade Colonnade

    Map over the content in the header. This is similar performing fmap on a Colonnade except that the body content is unaffected.

  8. toHeadless :: forall (h :: Type -> Type) a c . Colonnade h a c -> Colonnade Headless a c

    colonnade Colonnade

    Remove the heading from a Colonnade.

  9. getHeaded :: Headed a -> a

    colonnade Colonnade.Encode

    No documentation available.

  10. oneColonnadeHead :: OneColonnade (h :: Type -> Type) a c -> !h c

    colonnade Colonnade.Encode

    No documentation available.

Page 244 of many | Previous | Next