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. showBaseUrl :: BaseUrl -> String

    servant-client-core Servant.Client.Core.BaseUrl

    >>> showBaseUrl <$> parseBaseUrl "api.example.com"
    "http://api.example.com"
    

  2. showBaseUrl :: BaseUrl -> String

    servant-client-core Servant.Client.Core.Reexport

    >>> showBaseUrl <$> parseBaseUrl "api.example.com"
    "http://api.example.com"
    

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

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

  5. showCmdSpecForUser :: CmdSpec -> String

    process-extras System.Process.Common

    No documentation available.

  6. showCreateProcessForUser :: CreateProcess -> String

    process-extras System.Process.Common

    System.Process utility functions.

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

    process-extras System.Process.Common

    No documentation available.

  8. showCmdSpecForUser :: CmdSpec -> String

    process-extras System.Process.ListLike

    No documentation available.

  9. 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).

  10. showCreateProcessForUser :: CreateProcess -> String

    process-extras System.Process.ListLike

    System.Process utility functions.

Page 50 of many | Previous | Next