Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

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

  2. showGregorian :: Day -> String

    rio RIO.Time

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

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

    rio RIO.Vector

    No documentation available.

  4. showAttr :: Attr -> String

    xml Text.XML.Light.Output

    No documentation available.

  5. showCData :: CData -> String

    xml Text.XML.Light.Output

    No documentation available.

  6. showContent :: Content -> String

    xml Text.XML.Light.Output

    No documentation available.

  7. showElement :: Element -> String

    xml Text.XML.Light.Output

    No documentation available.

  8. showQName :: QName -> String

    xml Text.XML.Light.Output

    No documentation available.

  9. showTopElement :: Element -> String

    xml Text.XML.Light.Output

    Adds the ?xml? header.

  10. showTests :: Config -> [Test] -> [String] -> [String]

    tasty-discover Test.Tasty.Discover.Internal.Driver

    Show the tests.

Page 41 of many | Previous | Next