Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

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

  1. showPackageDb :: Maybe PackageDB -> String

    Cabal Distribution.Simple.Setup

    Show a PackageDB stack entry

  2. showPackageDbList :: [Maybe PackageDB] -> [String]

    Cabal Distribution.Simple.Setup

    No documentation available.

  3. showForCabal :: Verbosity -> String

    Cabal Distribution.Verbosity

    No documentation available.

  4. showForGHC :: Verbosity -> String

    Cabal Distribution.Verbosity

    No documentation available.

  5. showFixity :: Fixity -> String

    th-abstraction Language.Haskell.TH.Datatype

    Render a Fixity as it would appear in Haskell source. Example: infixl 5

  6. showFixityDirection :: FixityDirection -> String

    th-abstraction Language.Haskell.TH.Datatype

    Render a FixityDirection like it would appear in Haskell source. Examples: infixl infixr infix

  7. showTextData :: Show a => a -> Text

    http-api-data Web.HttpApiData

    Lower case. Convert to URL piece using Show instance. The result is always lower cased.

    >>> showTextData True
    "true"
    
    This can be used as a default implementation for enumeration types:
    >>> data MyData = Foo | Bar | Baz deriving (Show)
    
    >>> instance ToHttpApiData MyData where toUrlPiece = showTextData
    
    >>> toUrlPiece Foo
    "foo"
    

  8. showTextData :: Show a => a -> Text

    http-api-data Web.Internal.HttpApiData

    Lower case. Convert to URL piece using Show instance. The result is always lower cased.

    >>> showTextData True
    "true"
    
    This can be used as a default implementation for enumeration types:
    >>> data MyData = Foo | Bar | Baz deriving (Show)
    
    >>> instance ToHttpApiData MyData where toUrlPiece = showTextData
    
    >>> toUrlPiece Foo
    "foo"
    

  9. showt :: Show a => a -> Text

    http-api-data Web.Internal.HttpApiData

    Like show, but returns Text.

  10. showText :: TextFormat -> [Text] -> String

    cmdargs System.Console.CmdArgs.Text

    Show some text using the given formatting.

Page 36 of many | Previous | Next