Hoogle Search

Within LTS Haskell 24.19 (ghc-9.10.3)

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

  1. showBin :: Exponent -> T -> String

    numeric-prelude Number.Positional

    No documentation available.

  2. showDec :: Exponent -> T -> String

    numeric-prelude Number.Positional

    Show a number with respect to basis 10^e.

  3. showHex :: Exponent -> T -> String

    numeric-prelude Number.Positional

    No documentation available.

  4. showsPrecAuto :: (Eq a, C a, Show a) => Int -> T a -> String -> String

    numeric-prelude Number.Ratio

    This is an alternative show method that is more user-friendly but also potentially more ambigious.

  5. showNat :: (Show v, C a, Ord a, C a v) => T Dimension a -> T a v -> String

    numeric-prelude Number.SI

    No documentation available.

  6. showChar :: Char -> ShowS

    numeric-prelude NumericPrelude

    utility function converting a Char to a show function that simply prepends the character unchanged.

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

    numeric-prelude NumericPrelude

    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.

  8. showParen :: Bool -> ShowS -> ShowS

    numeric-prelude NumericPrelude

    utility function that surrounds the inner show function with parentheses when the Bool parameter is True.

  9. showString :: String -> ShowS

    numeric-prelude NumericPrelude

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

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

    numeric-prelude NumericPrelude

    equivalent to showsPrec with a precedence of 0.

Page 74 of many | Previous | Next