Hoogle Search

Within LTS Haskell 24.19 (ghc-9.10.3)

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

  1. showToHeader :: ShowSub

    ghc-lib-parser GHC.Iface.Syntax

    Show a declaration but not its RHS.

  2. showToIface :: ShowSub

    ghc-lib-parser GHC.Iface.Syntax

    Show declaration and its RHS, including GHc-internal information (e.g. for --show-iface).

  3. showtextl :: Show a => a -> Doc

    ghc-lib-parser GHC.Internal.TH.Ppr

    No documentation available.

  4. showName :: Name -> String

    ghc-lib-parser GHC.Internal.TH.Syntax

    No documentation available.

  5. showName' :: NameIs -> Name -> String

    ghc-lib-parser GHC.Internal.TH.Syntax

    No documentation available.

  6. showChar :: Char -> ShowS

    ghc-lib-parser GHC.Prelude.Basic

    utility function converting a Char to a show function that simply prepends the character unchanged.

  7. showList :: Show a => [a] -> ShowS

    ghc-lib-parser GHC.Prelude.Basic

    The method showList is provided to allow the programmer to give a specialised way of showing lists of values. For example, this is used by the predefined Show instance of the Char type, where values of type String should be shown in double quotes, rather than between square brackets.

  8. showParen :: Bool -> ShowS -> ShowS

    ghc-lib-parser GHC.Prelude.Basic

    utility function that surrounds the inner show function with parentheses when the Bool parameter is True.

  9. showString :: String -> ShowS

    ghc-lib-parser GHC.Prelude.Basic

    utility function converting a String to a show function that simply prepends the string unchanged.

  10. shows :: Show a => a -> ShowS

    ghc-lib-parser GHC.Prelude.Basic

    equivalent to showsPrec with a precedence of 0.

Page 82 of many | Previous | Next