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.
showSDocOneLine :: SDocContext -> SDoc -> Stringghc GHC.Utils.Outputable No documentation available.
showSDocUnsafe :: SDoc -> Stringghc GHC.Utils.Outputable No documentation available.
showException :: Exception e => e -> Stringghc GHC.Utils.Panic Show an exception as a string.
showGhcException :: SDocContext -> GhcException -> ShowSghc GHC.Utils.Panic Append a description of the given exception to this string.
showGhcExceptionUnsafe :: GhcException -> ShowSghc 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.
showPlainGhcException :: PlainGhcException -> ShowSghc GHC.Utils.Panic.Plain Append a description of the given exception to this string.
showTextData :: Show a => a -> Texthttp-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"
showTextData :: Show a => a -> Texthttp-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"
-
http-api-data Web.Internal.HttpApiData showText :: TextFormat -> [Text] -> Stringcmdargs System.Console.CmdArgs.Text Show some text using the given formatting.