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.

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

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  2. 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.

  3. 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"
    

  4. show :: forall (m :: Type -> Type) a r . (Monad m, Show a) => Stream (Of a) m r -> Stream (Of String) m r

    streaming Streaming.Prelude

    No documentation available.

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

    basement Basement.Compat.Base

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

  6. show :: Show a => a -> 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.

  7. show :: (Show a, StringConv String b) => a -> b

    protolude Protolude

    No documentation available.

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

    protolude Protolude.Base

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

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

    ghc-internal GHC.Internal.Show

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

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

    ghc-internal GHC.Internal.Text.Show

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

Page 2 of many | Previous | Next