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.

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

    base-compat Numeric.Compat

    Show a signed RealFloat value using standard decimal notation (e.g. 245000, 0.0015). This behaves as showFFloat, except that a decimal point is always guaranteed, even if not needed.

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

    base-compat Numeric.Compat

    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.

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

    base-compat Numeric.Compat

    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"
    

  4. showsInfixPrec :: (Show a, Show b) => String -> Int -> Int -> a -> b -> ShowS

    utility-ht Text.Show.HT

    Show a value using an infix operator.

  5. showsPrecDefault :: (GShow (Rep1 f a), Generic1 f) => Int -> f a -> ShowS

    transformers-compat Data.Functor.Classes.Generic.Internal

    A default showsPrec implementation for Generic1 instances that leverages Show1.

  6. showsPrecOptions :: (GShow (Rep1 f a), Generic1 f) => Options -> Int -> f a -> ShowS

    transformers-compat Data.Functor.Classes.Generic.Internal

    Like showsPrecDefault, but with configurable Options.

  7. showBuildTarget :: PackageId -> BuildTarget -> String

    Cabal Distribution.Simple.BuildTarget

    Unambiguously render a BuildTarget, so that it can be parsed in all situations.

  8. showUserBuildTarget :: UserBuildTarget -> String

    Cabal Distribution.Simple.BuildTarget

    No documentation available.

  9. showCompilerId :: Compiler -> String

    Cabal Distribution.Simple.Compiler

    No documentation available.

  10. showCompilerIdWithAbi :: Compiler -> String

    Cabal Distribution.Simple.Compiler

    No documentation available.

Page 61 of many | Previous | Next