Hoogle Search

Within LTS Haskell 24.18 (ghc-9.10.3)

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

  1. showProcessArgDebug :: String -> Text

    rio RIO.Process

    Show a process arg including speechmarks when necessary. Just for debugging purposes, not functionally important.

  2. showTree :: Show a => Set a -> String

    rio RIO.Set

    Show the tree that implements the set. The tree is shown in a compressed, hanging format.

  3. showTreeWith :: Show a => Bool -> Bool -> Set a -> String

    rio RIO.Set

    The expression (showTreeWith hang wide map) shows the tree that implements the set. If hang is True, a hanging tree is shown otherwise a rotated tree is shown. If wide is True, an extra wide version is shown.

    Set> putStrLn $ showTreeWith True False $ fromDistinctAscList [1..5]
    4
    +--2
    |  +--1
    |  +--3
    +--5
    
    Set> putStrLn $ showTreeWith True True $ fromDistinctAscList [1..5]
    4
    |
    +--2
    |  |
    |  +--1
    |  |
    |  +--3
    |
    +--5
    
    Set> putStrLn $ showTreeWith False True $ fromDistinctAscList [1..5]
    +--5
    |
    4
    |
    |  +--3
    |  |
    +--2
    |
    +--1
    

  4. showGregorian :: Day -> String

    rio RIO.Time

    Show in ISO 8601 format (yyyy-mm-dd)

  5. showsPrec :: (Vector v a, Show a) => Int -> v a -> ShowS

    rio RIO.Vector

    No documentation available.

  6. showAttr :: Attr -> String

    xml Text.XML.Light.Output

    No documentation available.

  7. showCData :: CData -> String

    xml Text.XML.Light.Output

    No documentation available.

  8. showContent :: Content -> String

    xml Text.XML.Light.Output

    No documentation available.

  9. showElement :: Element -> String

    xml Text.XML.Light.Output

    No documentation available.

  10. showQName :: QName -> String

    xml Text.XML.Light.Output

    No documentation available.

Page 41 of many | Previous | Next