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. showbFFloat :: RealFloat a => Maybe Int -> a -> Builder

    text-show TextShow.Data.Floating

    Show a signed RealFloat value using standard decimal notation (e.g. 245000, 0.0015). In the call showbFFloat digs val, if digs is Nothing, the value is shown to full precision; if digs is Just d, then at most d digits after the decimal point are shown. Since: 2

  2. showbFFloatAlt :: RealFloat a => Maybe Int -> a -> Builder

    text-show TextShow.Data.Floating

    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. Since: 2

  3. showbFPFormat :: FPFormat -> Builder

    text-show TextShow.Data.Floating

    Convert an FPFormat value to a Builder. Since: 2

  4. showbGFloat :: RealFloat a => Maybe Int -> a -> Builder

    text-show TextShow.Data.Floating

    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. In the call showbGFloat digs val, if digs is Nothing, the value is shown to full precision; if digs is Just d, then at most d digits after the decimal point are shown. Since: 2

  5. showbGFloatAlt :: RealFloat a => Maybe Int -> a -> Builder

    text-show TextShow.Data.Floating

    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. Since: 2

  6. showbRealFloatPrec :: RealFloat a => Int -> a -> Builder

    text-show TextShow.Data.Floating

    Convert a RealFloat value to a Builder with the given precedence. Since: 2

  7. showbBin :: (Integral a, TextShow a) => a -> Builder

    text-show TextShow.Data.Integral

    Show non-negative Integral numbers in base 2. Since: 2

  8. showbHex :: (Integral a, TextShow a) => a -> Builder

    text-show TextShow.Data.Integral

    Show non-negative Integral numbers in base 16. Since: 2

  9. showbIntAtBase :: (Integral a, TextShow a) => a -> (Int -> Char) -> a -> Builder

    text-show TextShow.Data.Integral

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

  10. showbIntegralPrec :: Integral a => Int -> a -> Builder

    text-show TextShow.Data.Integral

    Convert an Integral type to a Builder with the given precedence. Since: 2

Page 65 of many | Previous | Next