Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. 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>
    

  2. 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>
    

  3. 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>
    

  4. 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>
    

  5. 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.

  6. DataFormatError :: String -> DecompressError

    zlib Codec.Compression.Zlib

    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.

  7. DataFormatError :: String -> DecompressError

    zlib Codec.Compression.Zlib.Internal

    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.

  8. gzipFormat :: Format

    zlib Codec.Compression.Zlib.Internal

    The gzip format uses a header with a checksum and some optional meta-data about the compressed file. It is intended primarily for compressing individual files but is also sometimes used for network protocols such as HTTP. The format is described in detail in RFC #1952 http://www.ietf.org/rfc/rfc1952.txt

  9. gzipOrZlibFormat :: Format

    zlib Codec.Compression.Zlib.Internal

    This is not a format as such. It enabled zlib or gzip decoding with automatic header detection. This only makes sense for decompression.

  10. rawFormat :: Format

    zlib Codec.Compression.Zlib.Internal

    The 'raw' format is just the compressed data stream without any additional header, meta-data or data-integrity checksum. The format is described in detail in RFC #1951 http://www.ietf.org/rfc/rfc1951.txt

Page 431 of many | Previous | Next