Hoogle Search

Within LTS Haskell 24.10 (ghc-9.10.2)

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

  1. showsTree :: (k -> a -> String) -> Bool -> [String] -> [String] -> Map k a -> ShowS

    containers Data.Map.Internal.Debug

    No documentation available.

  2. showsTreeHang :: (k -> a -> String) -> Bool -> [String] -> Map k a -> ShowS

    containers Data.Map.Internal.Debug

    No documentation available.

  3. showTree :: Whoops "showTree has moved to Data.Map.Internal.Debug.showTree." => Map k a -> String

    containers Data.Map.Lazy

    This function has moved to showTree.

  4. showTreeWith :: Whoops "showTreeWith has moved to Data.Map.Internal.Debug.showTreeWith." => (k -> a -> String) -> Bool -> Bool -> Map k a -> String

    containers Data.Map.Lazy

    This function has moved to showTreeWith.

  5. showTree :: Whoops "showTree has moved to Data.Map.Internal.Debug.showTree." => Map k a -> String

    containers Data.Map.Strict

    This function has moved to showTree.

  6. showTreeWith :: Whoops "showTreeWith has moved to Data.Map.Internal.Debug.showTreeWith." => (k -> a -> String) -> Bool -> Bool -> Map k a -> String

    containers Data.Map.Strict

    This function has moved to showTreeWith.

  7. showTree :: Whoops "showTree has moved to Data.Map.Internal.Debug.showTree." => Map k a -> String

    containers Data.Map.Strict.Internal

    This function has moved to showTree.

  8. showTreeWith :: Whoops "showTreeWith has moved to Data.Map.Internal.Debug.showTreeWith." => (k -> a -> String) -> Bool -> Bool -> Map k a -> String

    containers Data.Map.Strict.Internal

    This function has moved to showTreeWith.

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

    containers Data.Set

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

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

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

Page 55 of many | Previous | Next