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.
clearTypeValueTableCollectFormat :: MonadIO m => TypeValueTable -> m ()gi-gobject GI.GObject.Structs.TypeValueTable Set the value of the “collect_format” field to Nothing. When overloading is enabled, this is equivalent to
clear #collectFormat
clearTypeValueTableLcopyFormat :: MonadIO m => TypeValueTable -> m ()gi-gobject GI.GObject.Structs.TypeValueTable Set the value of the “lcopy_format” field to Nothing. When overloading is enabled, this is equivalent to
clear #lcopyFormat
getTypeValueTableCollectFormat :: MonadIO m => TypeValueTable -> m (Maybe Text)gi-gobject GI.GObject.Structs.TypeValueTable Get the value of the “collect_format” field. When overloading is enabled, this is equivalent to
get typeValueTable #collectFormat
getTypeValueTableLcopyFormat :: MonadIO m => TypeValueTable -> m (Maybe Text)gi-gobject GI.GObject.Structs.TypeValueTable Get the value of the “lcopy_format” field. When overloading is enabled, this is equivalent to
get typeValueTable #lcopyFormat
setTypeValueTableCollectFormat :: MonadIO m => TypeValueTable -> CString -> m ()gi-gobject GI.GObject.Structs.TypeValueTable Set the value of the “collect_format” field. When overloading is enabled, this is equivalent to
set typeValueTable [ #collectFormat := value ]
setTypeValueTableLcopyFormat :: MonadIO m => TypeValueTable -> CString -> m ()gi-gobject GI.GObject.Structs.TypeValueTable Set the value of the “lcopy_format” field. When overloading is enabled, this is equivalent to
set typeValueTable [ #lcopyFormat := value ]
transformTree :: (TagTree str -> [TagTree str]) -> [TagTree str] -> [TagTree str]tagsoup Text.HTML.TagSoup.Tree This operation is based on the Uniplate transform function. Given a list of trees, it applies the function to every tree in a bottom-up manner. This operation is useful for manipulating a tree - for example to make all tag names upper case:
upperCase = transformTree f where f (TagBranch name atts inner) = [TagBranch (map toUpper name) atts inner] f x = [x]
-
tls Network.TLS Information related to a running context, e.g. current cipher
cipherAllowedForVersion :: Version -> Cipher -> Booltls Network.TLS Check if a specific Cipher is allowed to be used with the version specified
contextGetInformation :: Context -> IO (Maybe Information)tls Network.TLS Information about the current context