Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. setFormat :: FormatOptions -> EncodeOptions -> EncodeOptions

    yaml Data.Yaml

    Set the encoding formatting for the encoded YAML. By default, this is defaultFormatOptions.

  2. onbeforeonload :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the onbeforeonload attribute. Example:

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

  3. onbeforeprint :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the onbeforeprint attribute. Example:

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

  4. onformchange :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the onformchange attribute. Example:

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

  5. onforminput :: AttributeValue -> Attribute

    blaze-html Text.Blaze.Html5.Attributes

    Combinator for the onforminput attribute. Example:

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

  6. onbeforeonload :: AttributeValue -> Attribute

    blaze-html Text.Blaze.XHtml5.Attributes

    Combinator for the onbeforeonload attribute. Example:

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

  7. onbeforeprint :: AttributeValue -> Attribute

    blaze-html Text.Blaze.XHtml5.Attributes

    Combinator for the onbeforeprint attribute. Example:

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

  8. onformchange :: AttributeValue -> Attribute

    blaze-html Text.Blaze.XHtml5.Attributes

    Combinator for the onformchange attribute. Example:

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

  9. onforminput :: AttributeValue -> Attribute

    blaze-html Text.Blaze.XHtml5.Attributes

    Combinator for the onforminput attribute. Example:

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

  10. DataFormatError :: String -> DecompressError

    zlib Codec.Compression.GZip

    If the compressed data stream is corrupted in any way then you will get this error, for example if the input data just isn't a compressed zlib data stream. In particular if the data checksum turns out to be wrong then you will get all the decompressed data but this error at the end, instead of the normal successful StreamEnd.

Page 430 of many | Previous | Next