Hoogle Search

Within LTS Haskell 24.33 (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

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

  2. showBaseUrl :: BaseUrl -> String

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

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

  3. showBaseUrl :: BaseUrl -> String

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

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

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

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

  6. showSingInstance :: OptionsMonad q => Name -> q [Dec]

    singletons-base Data.Singletons.Base.TH

    Create instance of Show for the given singleton type (Not to be confused with singShowInstance.)

  7. showSingInstances :: OptionsMonad q => [Name] -> q [Dec]

    singletons-base Data.Singletons.Base.TH

    Create instances of Show for the given singleton types (Not to be confused with singShowInstances.)

  8. showErrorMessage :: ErrorMessage -> String

    singletons-base Data.Singletons.Base.TypeError

    Convert an ErrorMessage into a human-readable String.

  9. show_ :: Show a => a -> String

    singletons-base Prelude.Singletons

    show, but with an extra underscore so that its promoted counterpart (Show_) will not clash with the Show class.

  10. show_ :: Show a => a -> String

    singletons-base Text.Show.Singletons

    show, but with an extra underscore so that its promoted counterpart (Show_) will not clash with the Show class.

Page 83 of many | Previous | Next