Hoogle Search

Within LTS Haskell 24.10 (ghc-9.10.2)

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

  1. showsPrec1 :: (Show1 f, Show a) => Int -> f a -> ShowS

    base Data.Functor.Classes

    Lift the standard showsPrec and showList functions through the type constructor.

  2. showsPrec2 :: (Show2 f, Show a, Show b) => Int -> f a b -> ShowS

    base Data.Functor.Classes

    Lift the standard showsPrec function through the type constructor.

  3. showsUnary :: Show a => String -> Int -> a -> ShowS

    base Data.Functor.Classes

    Deprecated: Use showsUnaryWith to define liftShowsPrec

  4. showsUnary1 :: (Show1 f, Show a) => String -> Int -> f a -> ShowS

    base Data.Functor.Classes

    Deprecated: Use showsUnaryWith to define liftShowsPrec

  5. showsUnaryWith :: (Int -> a -> ShowS) -> String -> Int -> a -> ShowS

    base Data.Functor.Classes

    showsUnaryWith sp n d x produces the string representation of a unary data constructor with name n and argument x, in precedence context d.

  6. showsTypeRep :: TypeRep -> ShowS

    base Data.Typeable

    Show a type representation

  7. showVersion :: Version -> String

    base Data.Version

    Provides one possible concrete representation for Version. For a version with versionBranch = [1,2,3] and versionTags = ["tag1","tag2"], the output will be 1.2.3-tag1-tag2.

  8. showBin :: Integral a => a -> ShowS

    base Numeric

    Show non-negative Integral numbers in base 2.

  9. showEFloat :: RealFloat a => Maybe Int -> a -> ShowS

    base Numeric

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

  10. showFFloat :: RealFloat a => Maybe Int -> a -> ShowS

    base Numeric

    Show a signed RealFloat value using standard decimal notation (e.g. 245000, 0.0015). In the call showFFloat 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.

Page 48 of many | Previous | Next