Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

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

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

  3. showGregorian :: Day -> String

    rio RIO.Time

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

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

    rio RIO.Vector

    No documentation available.

  5. showAttr :: Attr -> String

    xml Text.XML.Light.Output

    No documentation available.

  6. showCData :: CData -> String

    xml Text.XML.Light.Output

    No documentation available.

  7. showContent :: Content -> String

    xml Text.XML.Light.Output

    No documentation available.

  8. showElement :: Element -> String

    xml Text.XML.Light.Output

    No documentation available.

  9. showQName :: QName -> String

    xml Text.XML.Light.Output

    No documentation available.

  10. showTopElement :: Element -> String

    xml Text.XML.Light.Output

    Adds the ?xml? header.

Page 74 of many | Previous | Next