Hoogle Search
Within LTS Haskell 20.8 (ghc-9.2.5)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
base Prelude A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
base Text.Show A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
base GHC.Show A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
hedgehog Hedgehog.Internal.Prelude A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
Cabal Distribution.Compat.Prelude.Internal A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
ghc GHC.Prelude A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
show :: (Functor m, Show a) => Pipe a String m rpipes Pipes.Prelude -
haskell-gi-base Data.GI.Base.ShortPrelude A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
rio RIO.Prelude A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
show :: forall b a . (Show a, IsString b) => a -> brelude Relude.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"
Page 1 of many | Next