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. showString :: String -> ShowS

    base GHC.Show

    utility function converting a String to a show function that simply prepends the string unchanged.

  2. shows :: Show a => a -> ShowS

    base GHC.Show

    equivalent to showsPrec with a precedence of 0.

  3. showsPrec :: Show a => Int -> a -> ShowS

    base GHC.Show

    Convert a value to a readable String. showsPrec should satisfy the law

    showsPrec d x r ++ s  ==  showsPrec d x (r ++ s)
    
    Derived instances of Read and Show satisfy the following: That is, readsPrec parses the string produced by showsPrec, and delivers the value that showsPrec started with.

  4. showText :: Text -> String

    text Data.Text.Internal

    A useful show-like function for debugging purposes.

  5. showStructure :: Text -> String

    text Data.Text.Internal.Lazy

    Display the internal structure of a lazy Text.

  6. showTree :: Show a => IntMap a -> String

    containers Data.IntMap.Internal

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

  7. showTreeWith :: Show a => Bool -> Bool -> IntMap a -> String

    containers Data.IntMap.Internal

    The expression (showTreeWith hang wide map) shows the tree that implements the map. 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.

  8. showTree :: Show a => IntMap a -> String

    containers Data.IntMap.Internal.Debug

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

  9. showTreeWith :: Show a => Bool -> Bool -> IntMap a -> String

    containers Data.IntMap.Internal.Debug

    The expression (showTreeWith hang wide map) shows the tree that implements the map. 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.

  10. showTree :: Whoops "Data.IntMap.showTree has moved to Data.IntMap.Internal.Debug.showTree" => IntMap a -> String

    containers Data.IntMap.Lazy

    showTree has moved to showTree

Page 20 of many | Previous | Next