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. showNearbyScores :: TimeZone -> Int -> ScoreTable -> Int -> [[AttrLine]]

    LambdaHack Game.LambdaHack.Client.UI.Slideshow

    Produce a couple of renderings of the high scores table.

  2. showTable :: TimeZone -> Int -> ScoreTable -> Int -> Int -> [AttrLine]

    LambdaHack Game.LambdaHack.Client.UI.Slideshow

    Show a screenful of the high scores table. Parameter entries is the number of (3-line) scores to be shown.

  3. showAward :: Int -> ScoreTable -> Int -> Text -> Text

    LambdaHack Game.LambdaHack.Common.HighScore

    No documentation available.

  4. showScore :: TimeZone -> Int -> ScoreRecord -> [Text]

    LambdaHack Game.LambdaHack.Common.HighScore

    Show a single high score, from the given ranking in the high score table.

  5. show64With2 :: Int64 -> Text

    LambdaHack Game.LambdaHack.Common.Misc

    No documentation available.

  6. showReqFailure :: ReqFailure -> Text

    LambdaHack Game.LambdaHack.Common.ReqFailure

    No documentation available.

  7. showChar :: Char -> ShowS

    LambdaHack Game.LambdaHack.Core.Prelude

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

  8. showFailure :: Show v => String -> v -> String

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

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

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

  10. showParen :: Bool -> ShowS -> ShowS

    LambdaHack Game.LambdaHack.Core.Prelude

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

Page 105 of many | Previous | Next