Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

  1. showCmdSpecForUser :: CmdSpec -> String

    process-extras System.Process.ListLike

    No documentation available.

  2. showCommandForUser :: FilePath -> [String] -> String

    process-extras System.Process.ListLike

    Given a program p and arguments args, showCommandForUser p args returns a string suitable for pasting into /bin/sh (on Unix systems) or CMD.EXE (on Windows).

  3. showCreateProcessForUser :: CreateProcess -> String

    process-extras System.Process.ListLike

    System.Process utility functions.

  4. showProcessMakerForUser :: ProcessMaker a => a -> String

    process-extras System.Process.ListLike

    No documentation available.

  5. showCursor :: Output -> IO ()

    vty Graphics.Vty.Output

    Shows the cursor.

  6. showSockAddr :: SockAddr -> NumericAddress

    wai-logger Network.Wai.Logger

    Convert SockAddr to NumericAddress. If the address is IPv4-embedded IPv6 address, the IPv4 is extracted.

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

    basement Basement.Compat.Base

    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.

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

    basement Basement.Compat.Base

    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.

  9. showPage :: Render ()

    cairo Graphics.Rendering.Cairo

    No documentation available.

  10. showText :: CairoString string => string -> Render ()

    cairo Graphics.Rendering.Cairo

    A drawing operator that generates the shape from a string of Unicode characters, rendered according to the current font face, font size (font matrix), and font options. This function first computes a set of glyphs for the string of text. The first glyph is placed so that its origin is at the current point. The origin of each subsequent glyph is offset from that of the previous glyph by the advance values of the previous glyph. After this call the current point is moved to the origin of where the next glyph would be placed in this same progression. That is, the current point will be at the origin of the final glyph offset by its advance values. This allows for easy display of a single logical string with multiple calls to showText. NOTE: The showText function call is part of what the cairo designers call the "toy" text API. It is convenient for short demos and simple programs, but it is not expected to be adequate for the most serious of text-using applications.

Page 87 of many | Previous | Next