Hoogle Search
Within LTS Haskell 24.42 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
showAward :: Int -> ScoreTable -> Int -> Text -> TextLambdaHack Game.LambdaHack.Common.HighScore No documentation available.
showScore :: TimeZone -> Int -> ScoreRecord -> [Text]LambdaHack Game.LambdaHack.Common.HighScore Show a single high score, from the given ranking in the high score table.
-
LambdaHack Game.LambdaHack.Common.Misc No documentation available.
showReqFailure :: ReqFailure -> TextLambdaHack Game.LambdaHack.Common.ReqFailure No documentation available.
-
LambdaHack Game.LambdaHack.Core.Prelude utility function converting a Char to a show function that simply prepends the character unchanged.
showFailure :: Show v => String -> v -> StringLambdaHack Game.LambdaHack.Core.Prelude A helper function for error. To be used as in
case xs of 0 : _ -> error $ "insignificant zero" `showFailure` xs
Fixing the first argument to String instead of anything Showable prevents warnings about defaulting, even when OverloadedStrings extension is enabled.showList :: Show a => [a] -> ShowSLambdaHack Game.LambdaHack.Core.Prelude 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.
showParen :: Bool -> ShowS -> ShowSLambdaHack Game.LambdaHack.Core.Prelude utility function that surrounds the inner show function with parentheses when the Bool parameter is True.
-
LambdaHack Game.LambdaHack.Core.Prelude utility function converting a String to a show function that simply prepends the string unchanged.
-
LambdaHack Game.LambdaHack.Core.Prelude equivalent to showsPrec with a precedence of 0.