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.
makeShowbPrec2 :: Name -> Q Exptext-show TextShow.TH Generates a lambda expression which behaves like showbPrec2 (without requiring a TextShow2 instance). Since: 2
-
text-show TextShow.TH Generates a lambda expression which behaves like showt (without requiring a TextShow instance). Since: 2
makeShowtList :: Name -> Q Exptext-show TextShow.TH Generates a lambda expression which behaves like showtList (without requiring a TextShow instance). Since: 2
makeShowtPrec :: Name -> Q Exptext-show TextShow.TH Generates a lambda expression which behaves like showtPrec (without requiring a TextShow instance). Since: 2
-
text-show TextShow.TH Generates a lambda expression which behaves like showtl (without requiring a TextShow instance). Since: 2
makeShowtlList :: Name -> Q Exptext-show TextShow.TH Generates a lambda expression which behaves like showtlList (without requiring a TextShow instance). Since: 2
makeShowtlPrec :: Name -> Q Exptext-show TextShow.TH Generates a lambda expression which behaves like showtlPrec (without requiring a TextShow instance). Since: 2
assertEqualNoShow :: (Eq a, HasCallStack) => a -> a -> IO ()HTF Test.Framework.HUnitWrapper Fail if the two values of type a are not equal. Use if a is neither an instance of Show nor of Pretty.
assertEqualNoShowVerbose :: (Eq a, HasCallStack) => String -> a -> a -> IO ()HTF Test.Framework.HUnitWrapper Fail if the two values of type a are not equal, supplying an additional message. Use if a is neither an instance of Show nor of Pretty.
assertLeftNoShow :: HasCallStack => Either a b -> IO aHTF Test.Framework.HUnitWrapper Fail if the given Either a b value is a Right. Use this function if b is not an instance of Show.