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.
-
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.
-
prelude-compat Prelude2010 A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
rebase Rebase.Prelude A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
base-prelude BasePrelude A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
mixed-types-num Numeric.MixedTypes.PreludeHiding A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
LambdaHack Game.LambdaHack.Core.Prelude A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
attoparsec-data Attoparsec.Data Parse the output of the show function applied to String or Text into what was used for its input.
-
cabal-install-solver Distribution.Solver.Compat.Prelude A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
show :: forall b a . (Show a, IsString b) => a -> bincipit-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"
-
tidal-core Sound.Tidal.Show A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.