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. showTree :: Whoops "Data.IntMap.showTree has moved to Data.IntMap.Internal.Debug.showTree" => IntMap a -> String

    containers Data.IntMap.Strict.Internal

    showTree has moved to showTree

  2. showTreeWith :: Whoops "Data.IntMap.showTreeWith has moved to Data.IntMap.Internal.Debug.showTreeWith" => Bool -> Bool -> IntMap a -> String

    containers Data.IntMap.Strict.Internal

    showTreeWith has moved to showTreeWith

  3. showTree :: IntSet -> String

    containers Data.IntSet

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

  4. showTreeWith :: Bool -> Bool -> IntSet -> String

    containers Data.IntSet

    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.

  5. showTree :: IntSet -> String

    containers Data.IntSet.Internal

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

  6. showTreeWith :: Bool -> Bool -> IntSet -> String

    containers Data.IntSet.Internal

    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.

  7. showTree :: (Show k, Show a) => Map k a -> String

    containers Data.Map.Internal.Debug

    Show the tree that implements the map. The tree is shown in a compressed, hanging format. See showTreeWith.

  8. showTreeWith :: (k -> a -> String) -> Bool -> Bool -> Map k a -> String

    containers Data.Map.Internal.Debug

    The expression (showTreeWith showelem hang wide map) shows the tree that implements the map. Elements are shown using the showElem function. 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.

    Map> let t = fromDistinctAscList [(x,()) | x <- [1..5]]
    Map> putStrLn $ showTreeWith (\k x -> show (k,x)) True False t
    (4,())
    +--(2,())
    |  +--(1,())
    |  +--(3,())
    +--(5,())
    
    Map> putStrLn $ showTreeWith (\k x -> show (k,x)) True True t
    (4,())
    |
    +--(2,())
    |  |
    |  +--(1,())
    |  |
    |  +--(3,())
    |
    +--(5,())
    
    Map> putStrLn $ showTreeWith (\k x -> show (k,x)) False True t
    +--(5,())
    |
    (4,())
    |
    |  +--(3,())
    |  |
    +--(2,())
    |
    +--(1,())
    

  9. showWide :: Bool -> [String] -> String -> String

    containers Data.Map.Internal.Debug

    No documentation available.

  10. showsBars :: [String] -> ShowS

    containers Data.Map.Internal.Debug

    No documentation available.

Page 54 of many | Previous | Next