Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. setHeader :: forall (name :: Symbol) val h (ts :: [Type]) . Set h (ResponseHeader 'Required name val) => h (With Response ts, val) (With Response (ResponseHeader 'Required name val ': ts))

    webgear-core WebGear.Core.Trait.Header

    Set a header value in a response. Example usage:

    response' <- setHeader @"Content-Length" -< (response, 42)
    

  2. setOptionalHeader :: forall (name :: Symbol) val h (ts :: [Type]) . Set h (ResponseHeader 'Optional name val) => h (With Response ts, Maybe val) (With Response (ResponseHeader 'Optional name val ': ts))

    webgear-core WebGear.Core.Trait.Header

    Set an optional header value in a response. Setting the header to Nothing will remove it from the response if it was previously set. The header will be considered as optional in all relevant places (such as documentation). Example usage:

    response' <- setOptionalHeader @"Content-Length" -< (response, Just 42)
    

  3. setAttribute :: Text -> Text -> Node -> Node

    xmlhtml Text.XmlHtml

    Sets the attribute name to the given value. If the Node is not an element, this is the identity.

  4. setNode :: Node -> Cursor -> Cursor

    xmlhtml Text.XmlHtml.Cursor

    Replaces the current node.

  5. setColors :: [AlphaColour Double] -> EC l ()

    Chart Graphics.Rendering.Chart.Easy

    Set the contents of the colour source, for subsequent plots

  6. setShapes :: [PointShape] -> EC l ()

    Chart Graphics.Rendering.Chart.Easy

    Set the contents of the shape source, for subsequent plots

  7. setPickFn :: PickFn b -> Renderable a -> Renderable b

    Chart Graphics.Rendering.Chart.Renderable

    Replace the pick function of a renderable with another.

  8. setAlpha :: Color (Alpha cs) e -> e -> Color (Alpha cs) e

    Color Graphics.Color.Model

    Change the alpha channel value for the pixel

  9. setAlpha :: Color (Alpha cs) e -> e -> Color (Alpha cs) e

    Color Graphics.Color.Space

    Change the alpha channel value for the pixel

  10. setAlpha :: Color (Alpha cs) e -> e -> Color (Alpha cs) e

    Color Graphics.Color.Space.RGB

    Change the alpha channel value for the pixel

Page 434 of many | Previous | Next