Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

  1. data ParseOptions str

    tagsoup Text.HTML.TagSoup.Tree

    These options control how parseTags works. The ParseOptions type is usually generated by one of parseOptions, parseOptionsFast or parseOptionsEntities, then selected fields may be overriden. The options optTagPosition and optTagWarning specify whether to generate TagPosition or TagWarning elements respectively. Usually these options should be set to False to simplify future stages, unless you rely on position information or want to give malformed HTML messages to the end user. The options optEntityData and optEntityAttrib control how entities, for example   are handled. Both take a string, and a boolean, where True indicates that the entity ended with a semi-colon ;. Inside normal text optEntityData will be called, and the results will be inserted in the tag stream. Inside a tag attribute optEntityAttrib will be called, and the first component of the result will be used in the attribute, and the second component will be appended after the TagOpen value (usually the second component is []). As an example, to not decode any entities, pass:

    parseOptions
    {optEntityData=\(str,b) -> [TagText $ "&" ++ str ++ [';' | b]]
    ,optEntityAttrib\(str,b) -> ("&" ++ str ++ [';' | b], [])
    

  2. ParseOptions :: Bool -> Bool -> ((str, Bool) -> [Tag str]) -> ((str, Bool) -> (str, [Tag str])) -> Bool -> ParseOptions str

    tagsoup Text.HTML.TagSoup.Tree

    No documentation available.

  3. pattern P256 :: Group

    tls Network.TLS

    No documentation available.

  4. pattern P384 :: Group

    tls Network.TLS

    No documentation available.

  5. pattern P521 :: Group

    tls Network.TLS

    No documentation available.

  6. PostHandshake :: TLSError -> TLSException

    tls Network.TLS

    Failure occurred while sending or receiving data after the TLS handshake succeeded.

  7. PreSharedKey :: HandshakeMode13

    tls Network.TLS

    Server authentication is skipped.

  8. data PrivKey

    tls Network.TLS

    Private key types known and used in X.509

  9. PrivKeyDSA :: PrivateKey -> PrivKey

    tls Network.TLS

    DSA private key

  10. PrivKeyEC :: PrivKeyEC -> PrivKey

    tls Network.TLS

    EC private key

Page 250 of many | Previous | Next