Hoogle Search

Within LTS Haskell 23.24 (ghc-9.8.4)

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

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

    base Prelude

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

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

    base Text.Show

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

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

    base GHC.Show

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

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

    hedgehog Hedgehog.Internal.Prelude

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

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

    haskell-gi-base Data.GI.Base.ShortPrelude

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

  6. show :: forall (m :: Type -> Type) a r . (Functor m, Show a) => Pipe a String m r

    pipes Pipes.Prelude

    Convert Showable values to Strings

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

    rio RIO.Prelude

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

  8. show :: (PrimMonad m, C sh, Show sh, Storable a, Show a) => Array m sh a -> m String

    comfort-array Data.Array.Comfort.Storable.Mutable.Private

    No documentation available.

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

    Cabal-syntax Distribution.Compat.Prelude

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

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

    relude 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