Hoogle Search

Within LTS Haskell 24.18 (ghc-9.10.3)

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

  1. showSDocOneLine :: SDocContext -> SDoc -> String

    ghc GHC.Utils.Outputable

    No documentation available.

  2. showSDocUnsafe :: SDoc -> String

    ghc GHC.Utils.Outputable

    No documentation available.

  3. showException :: Exception e => e -> String

    ghc GHC.Utils.Panic

    Show an exception as a string.

  4. showGhcException :: SDocContext -> GhcException -> ShowS

    ghc GHC.Utils.Panic

    Append a description of the given exception to this string.

  5. showGhcExceptionUnsafe :: GhcException -> ShowS

    ghc GHC.Utils.Panic

    Append a description of the given exception to this string. Note that this uses defaultSDocContext, which doesn't use the options set by the user via DynFlags.

  6. showPlainGhcException :: PlainGhcException -> ShowS

    ghc GHC.Utils.Panic.Plain

    Append a description of the given exception to this string.

  7. showTextData :: Show a => a -> Text

    http-api-data Web.HttpApiData

    Lower case. Convert to URL piece using Show instance. The result is always lower cased.

    >>> showTextData True
    "true"
    
    This can be used as a default implementation for enumeration types:
    >>> data MyData = Foo | Bar | Baz deriving (Show)
    
    >>> instance ToHttpApiData MyData where toUrlPiece = showTextData
    
    >>> toUrlPiece Foo
    "foo"
    

  8. showTextData :: Show a => a -> Text

    http-api-data Web.Internal.HttpApiData

    Lower case. Convert to URL piece using Show instance. The result is always lower cased.

    >>> showTextData True
    "true"
    
    This can be used as a default implementation for enumeration types:
    >>> data MyData = Foo | Bar | Baz deriving (Show)
    
    >>> instance ToHttpApiData MyData where toUrlPiece = showTextData
    
    >>> toUrlPiece Foo
    "foo"
    

  9. showt :: Show a => a -> Text

    http-api-data Web.Internal.HttpApiData

    Like show, but returns Text.

  10. showText :: TextFormat -> [Text] -> String

    cmdargs System.Console.CmdArgs.Text

    Show some text using the given formatting.

Page 36 of many | Previous | Next