Hoogle Search

Within LTS Haskell 24.9 (ghc-9.10.2)

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

  1. ShowText :: Text -> GShow

    tasty-silver Test.Tasty.Silver.Advanced

    Show the given text.

  2. ShowDiffed :: Maybe String -> Text -> GDiff

    tasty-silver Test.Tasty.Silver.Internal

    The two values are different, just show the given text to the user.

  3. ShowText :: Text -> GShow

    tasty-silver Test.Tasty.Silver.Internal

    Show the given text.

  4. type ShowsPrec r = Int -> r -> String -> String

    test-fun Test.Fun

    The type of showsPrec.

  5. type ShowsPrec r = Int -> r -> String -> String

    test-fun Test.Fun.Internal.Types

    The type of showsPrec.

  6. newtype ShowInstance a

    text-display Data.Text.Display

    This wrapper allows you to rely on a pre-existing Show instance in order to derive Display from it.

    Example

    data AutomaticallyDerived = AD
    -- We derive 'Show'
    deriving stock Show
    -- We take advantage of the 'Show' instance to derive 'Display' from it
    deriving Display
    via (ShowInstance AutomaticallyDerived)
    

  7. ShowInstance :: a -> ShowInstance a

    text-display Data.Text.Display

    No documentation available.

  8. newtype ShowInstance a

    text-display Data.Text.Display.Core

    This wrapper allows you to rely on a pre-existing Show instance in order to derive Display from it.

    Example

    data AutomaticallyDerived = AD
    -- We derive 'Show'
    deriving stock Show
    -- We take advantage of the 'Show' instance to derive 'Display' from it
    deriving Display
    via (ShowInstance AutomaticallyDerived)
    

  9. ShowInstance :: a -> ShowInstance a

    text-display Data.Text.Display.Core

    No documentation available.

  10. type family ShowNatBase (base :: Natural) (showDigit :: Natural ~> Char) (n :: Natural) :: Symbol

    type-level-show TypeLevelShow.Natural

    Render a type-level Natural in the given base using the given digit renderer. The digit renderer is guaranteed to be called with 0 <= n < base.

Page 35 of many | Previous | Next