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.
ParamSpecPool :: ManagedPtr ParamSpecPool -> ParamSpecPoolgi-gobject GI.GObject.Structs.ParamSpecPool No documentation available.
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.
-
gi-gobject GI.GObject.Structs.ParamSpecTypeInfo Memory-managed wrapper type.
ParamSpecTypeInfo :: ManagedPtr ParamSpecTypeInfo -> ParamSpecTypeInfogi-gobject GI.GObject.Structs.ParamSpecTypeInfo No documentation available.
module GI.GObject.Structs.
Parameter The GParameter struct is an auxiliary structure used to hand parameter name/value pairs to objectNewv.
-
gi-gobject GI.GObject.Structs.Parameter Memory-managed wrapper type.
Parameter :: ManagedPtr Parameter -> Parametergi-gobject GI.GObject.Structs.Parameter No documentation available.
-
reflection Data.Reflection 2n - 1
-
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], []) -
tagsoup Text.HTML.TagSoup No documentation available.