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.
-
tasty-silver Test.Tasty.Silver.Advanced Show the given text.
ShowDiffed :: Maybe String -> Text -> GDifftasty-silver Test.Tasty.Silver.Internal The two values are different, just show the given text to the user.
-
tasty-silver Test.Tasty.Silver.Internal Show the given text.
type
ShowsPrec r = Int -> r -> String -> Stringtest-fun Test.Fun The type of showsPrec.
type
ShowsPrec r = Int -> r -> String -> Stringtest-fun Test.Fun.Internal.Types The type of showsPrec.
-
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)
ShowInstance :: a -> ShowInstance atext-display Data.Text.Display No documentation available.
-
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)
ShowInstance :: a -> ShowInstance atext-display Data.Text.Display.Core No documentation available.
type family
ShowNatBase (base :: Natural) (showDigit :: Natural ~> Char) (n :: Natural) :: Symboltype-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.