Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

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

  1. show :: Show a => a -> String

    foundation Foundation

    Use the Show class to create a String. Note that this is not efficient, since an intermediate [Char] is going to be created before turning into a real String.

  2. show :: Show a => a -> String

    prelude-compat Prelude2010

    A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.

  3. show :: Show a => a -> String

    rebase Rebase.Prelude

    A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.

  4. show :: Show a => a -> String

    base-prelude BasePrelude

    A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.

  5. show :: Show a => a -> String

    mixed-types-num Numeric.MixedTypes.PreludeHiding

    A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.

  6. show :: Show a => a -> String

    LambdaHack Game.LambdaHack.Core.Prelude

    A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.

  7. show :: Parser Text

    attoparsec-data Attoparsec.Data

    Parse the output of the show function applied to String or Text into what was used for its input.

  8. show :: Show a => a -> String

    cabal-install-solver Distribution.Solver.Compat.Prelude

    A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.

  9. show :: forall b a . (Show a, IsString b) => a -> b

    incipit-base Incipit.String.Conversion

    Generalized version of show. Unlike show this function is polymorphic in its result type. This makes it more convenient to work with data types like Text or ByteString. However, if you pass the result of show to a function that expects polymorphic argument, this can break type inference, so use -XTypeApplications to specify the textual type explicitly.

    >>> show (42 :: Int)
    "42"
    
    >>> show (42 :: Double)
    "42.0"
    
    >>> print (show @Text True)
    "True"
    

  10. show :: Show a => a -> String

    tidal-core Sound.Tidal.Show

    A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.

Page 4 of many | Previous | Next