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. ParamSpecPool :: ManagedPtr ParamSpecPool -> ParamSpecPool

    gi-gobject GI.GObject.Structs.ParamSpecPool

    No documentation available.

  2. module GI.GObject.Structs.ParamSpecTypeInfo

    This structure is used to provide the type system with the information required to initialize and destruct (finalize) a parameter's class and instances thereof. The initialized structure is passed to the paramTypeRegisterStatic The type system will perform a deep copy of this structure, so its memory does not need to be persistent across invocation of paramTypeRegisterStatic.

  3. newtype ParamSpecTypeInfo

    gi-gobject GI.GObject.Structs.ParamSpecTypeInfo

    Memory-managed wrapper type.

  4. ParamSpecTypeInfo :: ManagedPtr ParamSpecTypeInfo -> ParamSpecTypeInfo

    gi-gobject GI.GObject.Structs.ParamSpecTypeInfo

    No documentation available.

  5. module GI.GObject.Structs.Parameter

    The GParameter struct is an auxiliary structure used to hand parameter name/value pairs to objectNewv.

  6. newtype Parameter

    gi-gobject GI.GObject.Structs.Parameter

    Memory-managed wrapper type.

  7. Parameter :: ManagedPtr Parameter -> Parameter

    gi-gobject GI.GObject.Structs.Parameter

    No documentation available.

  8. data PD n

    reflection Data.Reflection

    2n - 1

  9. data ParseOptions str

    tagsoup Text.HTML.TagSoup

    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], [])
    

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

    tagsoup Text.HTML.TagSoup

    No documentation available.

Page 249 of many | Previous | Next