Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. traceShow :: Show a => a -> b -> b

    classy-prelude-yesod ClassyPrelude.Yesod

    No documentation available.

  2. traceShowId :: Show a => a -> a

    classy-prelude-yesod ClassyPrelude.Yesod

    Since 0.5.9

  3. traceShowM :: (Show a, Monad m) => a -> m ()

    classy-prelude-yesod ClassyPrelude.Yesod

    Since 0.5.9

  4. tshow :: Show a => a -> Text

    classy-prelude-yesod ClassyPrelude.Yesod

    No documentation available.

  5. NoShow :: f x -> (:$:) (f :: Type -> Type) x

    diff-loc DiffLoc.Starter

    No documentation available.

  6. package floatshow

    Alternative faster String representations for Double and Float, String representations for more general numeric types. The String representations provided by this package are generally longer than show's output, which constructs the shortest string that is parsed as the original number by read. This requires some time-consuming checks, so show is slow for floating-point numbers. By producing a digit-string guaranteed to be long enough to uniquely determine the number without caring whether there's a shorter representation, the display functions of this package can be faster, sometimes by a big margin. Text.FShow.Raw provides building blocks for representations of numeric types which don't belong to RealFloat but have some of its functionality. The bulk of the code is a minor modification of code from the base package, whence the GHC License is included as an extra-source-file.

  7. class FShow a

    floatshow Text.FShow.RealFloat

    A duplicate of the Show class.

  8. fshow :: FShow a => a -> String

    floatshow Text.FShow.RealFloat

    No documentation available.

  9. fshowEFloat :: DispFloat a => Maybe Int -> a -> ShowS

    floatshow Text.FShow.RealFloat

    Show a signed DispFloat value using scientific (exponential) notation (e.g. 2.45e2, 1.5e-3). In the call fshowEFloat digs val, if digs is Nothing, the value is shown to full precision; if digs is Just d, then max 1 d digits after the decimal point are shown. Analogous to showEFloat from Numeric.

  10. fshowFFloat :: DispFloat a => Maybe Int -> a -> ShowS

    floatshow Text.FShow.RealFloat

    Show a signed DispFloat value using standard decimal notation (e.g. 245000, 0.0015). In the call fshowFFloat digs val, if digs is Nothing, the value is shown to full precision; if digs is Just d, then max 0 d digits after the decimal point are shown. Analogous to showFFloat from Numeric.

Page 398 of many | Previous | Next