Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. showSimpleMessageBox :: MonadIO m => Maybe Window -> MessageKind -> Text -> Text -> m ()

    sdl2 SDL.Video

    Show a simple message box with the given title and a message. Consider writing your messages to stderr too. Throws SDLException if there are no available video targets.

  2. showWindow :: MonadIO m => Window -> m ()

    sdl2 SDL.Video

    Show a window. See SDL_ShowWindow for C documentation.

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

    shake Development.Shake.Classes

    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.

  4. showsPrec :: Show a => Int -> a -> ShowS

    shake Development.Shake.Classes

    Convert a value to a readable String. showsPrec should satisfy the law

    showsPrec d x r ++ s  ==  showsPrec d x (r ++ s)
    
    Derived instances of Read and Show satisfy the following: That is, readsPrec parses the string produced by showsPrec, and delivers the value that showsPrec started with.

  5. showType :: forall (t :: SwaggerKind Type) . (Maybe (SwaggerType t), Value) -> String

    swagger2 Data.Swagger.Internal.Schema.Validation

    No documentation available.

  6. showErrno :: Errno -> String

    alsa-core Sound.ALSA.Exception

    No documentation available.

  7. showChar :: Char -> ShowS

    basic-prelude BasicPrelude

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

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

    basic-prelude BasicPrelude

    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

    basic-prelude BasicPrelude

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

  10. showString :: String -> ShowS

    basic-prelude BasicPrelude

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

Page 78 of many | Previous | Next