Hoogle Search

Within LTS Haskell 24.33 (ghc-9.10.3)

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

  1. showbLitString :: String -> Builder

    text-show TextShow.Data.Char

    Convert a String to a Builder (without double quotes). Since: 2

  2. showbString :: String -> Builder

    text-show TextShow.Data.Char

    Convert a String to a Builder (surrounded by double quotes). Since: 2

  3. showbFixed :: HasResolution a => Bool -> Fixed a -> Builder

    text-show TextShow.Data.Fixed

    Convert a Fixed value to a Builder, where the first argument indicates whether to chop off trailing zeroes. Since: 2

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

    text-show TextShow.Data.Floating

    Show a signed RealFloat value using scientific (exponential) notation (e.g. 2.45e2, 1.5e-3). In the call showbEFloat 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. 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

  6. 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

  7. showbFPFormat :: FPFormat -> Builder

    text-show TextShow.Data.Floating

    Convert an FPFormat value to a Builder. Since: 2

  8. 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

  9. 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

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

    text-show TextShow.Data.Floating

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

Page 98 of many | Previous | Next