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. showPlainGhcException :: PlainGhcException -> ShowS

    ghc GHC.Utils.Panic.Plain

    Append a description of the given exception to this string.

  2. showMigration :: forall (m :: Type -> Type) . (HasCallStack, MonadIO m) => Migration -> ReaderT SqlBackend m [Text]

    persistent Database.Persist.Sql.Migration

    Convert a Migration to a list of Text values corresponding to their Sql statements.

  3. showFixity :: Fixity -> String

    th-abstraction Language.Haskell.TH.Datatype

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

  4. showFixityDirection :: FixityDirection -> String

    th-abstraction Language.Haskell.TH.Datatype

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

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

  6. 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"
    

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

    http-api-data Web.Internal.HttpApiData

    Like show, but returns Text.

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

    cmdargs System.Console.CmdArgs.Text

    Show some text using the given formatting.

  9. showReadSpec :: (Show a, Eq a, Read a, Typeable a, GenValid a) => Spec

    genvalidity-hspec Test.Validity

    Standard test spec for properties of Show and Read instances for valid values Example usage:

    showReadSpec @Int
    

  10. showReadSpecOnArbitrary :: (Show a, Eq a, Read a, Typeable a, Arbitrary a) => Spec

    genvalidity-hspec Test.Validity

    Standard test spec for properties of Show and Read instances for arbitrary values Example usage:

    showReadSpecOnArbitrary @Double
    

Page 36 of many | Previous | Next