Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

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

  1. httpEquiv :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html4.Transitional.Attributes

    Combinator for the http-equiv attribute. Example:

    div ! httpEquiv "bar" $ "Hello."
    
    Result:
    <div http-equiv="bar">Hello.</div>
    

  2. httpEquiv :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the http-equiv attribute. Example:

    div ! httpEquiv "bar" $ "Hello."
    
    Result:
    <div http-equiv="bar">Hello.</div>
    

  3. required :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the required attribute. Example:

    div ! required "bar" $ "Hello."
    
    Result:
    <div required="bar">Hello.</div>
    

  4. httpEquiv :: AttributeValue -> Attribute

    blaze-html Text.Blaze.XHtml1.FrameSet.Attributes

    Combinator for the http-equiv attribute. Example:

    div ! httpEquiv "bar" $ "Hello."
    
    Result:
    <div http-equiv="bar">Hello.</div>
    

  5. httpEquiv :: AttributeValue -> Attribute

    blaze-html Text.Blaze.XHtml1.Strict.Attributes

    Combinator for the http-equiv attribute. Example:

    div ! httpEquiv "bar" $ "Hello."
    
    Result:
    <div http-equiv="bar">Hello.</div>
    

  6. httpEquiv :: AttributeValue -> Attribute

    blaze-html Text.Blaze.XHtml1.Transitional.Attributes

    Combinator for the http-equiv attribute. Example:

    div ! httpEquiv "bar" $ "Hello."
    
    Result:
    <div http-equiv="bar">Hello.</div>
    

  7. httpEquiv :: AttributeValue -> Attribute

    blaze-html Text.Blaze.XHtml5.Attributes

    Combinator for the http-equiv attribute. Example:

    div ! httpEquiv "bar" $ "Hello."
    
    Result:
    <div http-equiv="bar">Hello.</div>
    

  8. required :: AttributeValue -> Attribute

    blaze-html Text.Blaze.XHtml5.Attributes

    Combinator for the required attribute. Example:

    div ! required "bar" $ "Hello."
    
    Result:
    <div required="bar">Hello.</div>
    

  9. generateQ :: Curve -> Integer -> Point

    crypton Crypto.PubKey.ECC.Generate

    Generate Q given d. WARNING: Vulnerable to timing attacks.

  10. data ASeq (f :: Type -> Type) a

    free Control.Applicative.Free.Fast

    The free applicative is composed of a sequence of effects, and a pure function to apply that sequence to. The fast free applicative separates these from each other, so that the sequence may be built up independently, and so that fmap can run in constant time by having immediate access to the pure function.

Page 184 of many | Previous | Next