Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. showGFloatAlt :: RealFloat a => Maybe Int -> a -> ShowS

    ghc-internal GHC.Internal.Numeric

    Show a signed RealFloat value using standard decimal notation for arguments whose absolute value lies between 0.1 and 9,999,999, and scientific notation otherwise. This behaves as showFFloat, except that a decimal point is always guaranteed, even if not needed.

  2. showHFloat :: RealFloat a => a -> ShowS

    ghc-internal GHC.Internal.Numeric

    Show a floating-point value in the hexadecimal format, similar to the %a specifier in C's printf.

    >>> showHFloat (212.21 :: Double) ""
    "0x1.a86b851eb851fp7"
    
    >>> showHFloat (-12.76 :: Float) ""
    "-0x1.9851ecp3"
    
    >>> showHFloat (-0 :: Double) ""
    "-0x0p+0"
    

  3. showHex :: Integral a => a -> ShowS

    ghc-internal GHC.Internal.Numeric

    Show non-negative Integral numbers in base 16.

  4. showInt :: Integral a => a -> ShowS

    ghc-internal GHC.Internal.Numeric

    Show non-negative Integral numbers in base 10.

  5. showIntAtBase :: Integral a => a -> (Int -> Char) -> a -> ShowS

    ghc-internal GHC.Internal.Numeric

    Shows a non-negative Integral number using the base specified by the first argument, and the character representation specified by the second.

  6. showOct :: Integral a => a -> ShowS

    ghc-internal GHC.Internal.Numeric

    Show non-negative Integral numbers in base 8.

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

    ghc-internal GHC.Internal.Numeric

    Converts a possibly-negative Real value to a string.

  8. showCCSOnException :: ProfFlags -> Bool

    ghc-internal GHC.Internal.RTS.Flags

    No documentation available.

  9. showTickyStats :: TickyFlags -> Bool

    ghc-internal GHC.Internal.RTS.Flags

    No documentation available.

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

    ghc-internal GHC.Internal.Real

    Converts a possibly-negative Real value to a string.

Page 90 of many | Previous | Next