Hoogle Search
Within LTS Haskell 24.42 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
showHFloat :: RealFloat a => a -> ShowSghc-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"
showHex :: Integral a => a -> ShowSghc-internal GHC.Internal.Numeric Show non-negative Integral numbers in base 16.
showInt :: Integral a => a -> ShowSghc-internal GHC.Internal.Numeric Show non-negative Integral numbers in base 10.
showIntAtBase :: Integral a => a -> (Int -> Char) -> a -> ShowSghc-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.
showOct :: Integral a => a -> ShowSghc-internal GHC.Internal.Numeric Show non-negative Integral numbers in base 8.
showSigned :: Real a => (a -> ShowS) -> Int -> a -> ShowSghc-internal GHC.Internal.Numeric Converts a possibly-negative Real value to a string.
showCCSOnException :: ProfFlags -> Boolghc-internal GHC.Internal.RTS.Flags No documentation available.
showTickyStats :: TickyFlags -> Boolghc-internal GHC.Internal.RTS.Flags No documentation available.
showSigned :: Real a => (a -> ShowS) -> Int -> a -> ShowSghc-internal GHC.Internal.Real Converts a possibly-negative Real value to a string.
-
ghc-internal GHC.Internal.Show utility function converting a Char to a show function that simply prepends the character unchanged.