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

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

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

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

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

  6. 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 ]
    

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

  8. data Information

    tls Network.TLS

    Information related to a running context, e.g. current cipher

  9. cipherAllowedForVersion :: Version -> Cipher -> Bool

    tls Network.TLS

    Check if a specific Cipher is allowed to be used with the version specified

  10. contextGetInformation :: Context -> IO (Maybe Information)

    tls Network.TLS

    Information about the current context

Page 535 of many | Previous | Next