Hoogle Search
Within LTS Haskell 24.2 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
Cabal-syntax Distribution.Compat.Prelude No documentation available.
show :: (PrimMonad m, C sh, Show sh, Storable a, Show a) => Array m sh a -> m Stringcomfort-array Data.Array.Comfort.Storable.Mutable.Private No documentation available.
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"
-
streaming Streaming.Prelude No documentation available.
-
basement Basement.Compat.Base A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
basement Basement.Imports 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.
show :: (Show a, StringConv String b) => a -> bprotolude Protolude No documentation available.
-
protolude Protolude.Base A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
ghc-internal GHC.Internal.Show A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.
-
ghc-internal GHC.Internal.Text.Show A specialised variant of showsPrec, using precedence context zero, and returning an ordinary String.