Hoogle Search

Within LTS Haskell 24.49 (ghc-9.10.3)

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

  1. showList :: Show a => [a] -> ShowS

    protolude Protolude.Base

    The method showList is provided to allow the programmer to give a specialised way of showing lists of values. For example, this is used by the predefined Show instance of the Char type, where values of type String should be shown in double quotes, rather than between square brackets.

  2. showSigned :: Real a => (a -> ShowS) -> Int -> a -> ShowS

    protolude Protolude.Base

    Converts a possibly-negative Real value to a string.

  3. showSignedFloat :: RealFloat a => (a -> ShowS) -> Int -> a -> ShowS

    protolude Protolude.Base

    No documentation available.

  4. showStackTrace :: IO (Maybe String)

    protolude Protolude.Base

    Get a string representation of the current execution stack state.

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

    protolude Protolude.Base

    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.

  6. showTree :: (Show k, Show a) => MonoidalMap k a -> String

    reflex Data.AppendMap

    Displays a MonoidalMap as a tree. See showTree for details.

  7. showTreeWith :: (k -> a -> String) -> Bool -> Bool -> MonoidalMap k a -> String

    reflex Data.AppendMap

    Displays a MonoidalMap as a tree, using the supplied function to convert nodes to string.

  8. showProfilingData :: IO ()

    reflex Reflex.Profiled

    No documentation available.

  9. showNodeId :: a -> String

    reflex Reflex.Spider.Internal

    No documentation available.

  10. showNodeId' :: Int -> String

    reflex Reflex.Spider.Internal

    No documentation available.

Page 61 of many | Previous | Next