Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

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

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

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

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

  5. data Information

    tls Network.TLS

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

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

    tls Network.TLS

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

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

    tls Network.TLS

    Information about the current context

  8. debugVersionForced :: DebugParams -> Maybe Version

    tls Network.TLS

    Force to choose this version in the server side. Default: Nothing

  9. prologueBefore :: Prologue -> [Miscellaneous]

    xml-types Data.XML.Types

    No documentation available.

  10. connectionWaitForInput :: Connection -> Int -> IO Bool

    crypton-connection Network.Connection

    Wait for input to become available on a connection. As with hWaitForInput, the timeout value is given in milliseconds. If the timeout value is less than zero, then connectionWaitForInput waits indefinitely. Unlike hWaitForInput, this function does not do any decoding, so it returns true when there is any available input, not just full characters.

Page 536 of many | Previous | Next