Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. showAstData :: Data a => BlankSrcSpan -> BlankEpAnnotations -> a -> SDoc

    ghc-lib-parser GHC.Hs.Dump

    Show a GHC syntax tree. This parameterised because it is also used for comparing ASTs in ppr roundtripping tests, where the SrcSpan's are blanked out, to avoid comparing locations, only structure

  2. showAstDataFull :: Data a => a -> SDoc

    ghc-lib-parser GHC.Hs.Dump

    Show the full AST as the compiler sees it.

  3. showToHeader :: ShowSub

    ghc-lib-parser GHC.Iface.Syntax

    Show a declaration but not its RHS.

  4. showToIface :: ShowSub

    ghc-lib-parser GHC.Iface.Syntax

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

  5. showName :: Name -> String

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

    No documentation available.

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

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

    No documentation available.

  7. showChar :: Char -> ShowS

    ghc-lib-parser GHC.Prelude.Basic

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

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

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

  10. showString :: String -> ShowS

    ghc-lib-parser GHC.Prelude.Basic

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

Page 82 of many | Previous | Next