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. renderWithShow :: (Typeable a, Show a) => SnapshotRenderer

    skeletest Skeletest.Main

    No documentation available.

  2. recursiveShowsPrec :: forall t (f :: Type -> Type) . (Recursive (->) t f, Show1 f) => Int -> t -> ShowS

    yaya Yaya.Fold

    An implementation of showsPrec for any Recursive instance.

  3. recursiveShowsPrec' :: Recursive (->) t f => Algebra (->) f (Int -> ShowS) -> Int -> t -> ShowS

    yaya Yaya.Fold

    Like recursiveShowsPrec, but allows you to provide a custom display function for f.

  4. recursiveShowsPrec :: forall t (f :: Type -> Type) . (Recursive (->) t f, Show1 f) => Int -> t -> ShowS

    yaya Yaya.Retrofit

    An implementation of showsPrec for any Recursive instance.

  5. recursiveShowsPrec' :: Recursive (->) t f => Algebra (->) f (Int -> ShowS) -> Int -> t -> ShowS

    yaya Yaya.Retrofit

    Like recursiveShowsPrec, but allows you to provide a custom display function for f.

  6. module Test.ChasingBottoms.ApproxShow

    Functions for converting arbitrary (non-function, partial, possibly infinite) values into strings.

  7. class ApproxShow a

    ChasingBottoms Test.ChasingBottoms.ApproxShow

    No documentation available.

  8. approxShow :: ApproxShow a => Nat -> a -> String

    ChasingBottoms Test.ChasingBottoms.ApproxShow

    No documentation available.

  9. approxShows :: ApproxShow a => Nat -> a -> ShowS

    ChasingBottoms Test.ChasingBottoms.ApproxShow

    No documentation available.

  10. approxShowsPrec :: ApproxShow a => Nat -> Prec -> a -> ShowS

    ChasingBottoms Test.ChasingBottoms.ApproxShow

    The Data instance of ApproxShow makes sure that approxShowsPrec n behaves (more or less) like the derived version of showsPrec, with the following differences:

    • After n levels of descent into a term the output is replaced by "_".
    • All detectable occurences of bottoms are replaced by "_|_".
    • Non-bottom functions are displayed as "<function /= _|_>".

Page 282 of many | Previous | Next