Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. makeShowtlPrec :: Name -> Q Exp

    text-show TextShow.TH

    Generates a lambda expression which behaves like showtlPrec (without requiring a TextShow instance). Since: 2

  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.

  3. 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.

  4. assertLeftNoShow :: HasCallStack => Either a b -> IO a

    HTF 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.

  5. assertLeftNoShowVerbose :: HasCallStack => String -> Either a b -> IO a

    HTF Test.Framework.HUnitWrapper

    Fail if the given Either a b value is a Right, supplying an additional error message. Use this function if b is not an instance of Show.

  6. assertNotEqualNoShow :: (Eq a, HasCallStack) => a -> a -> IO ()

    HTF Test.Framework.HUnitWrapper

    Fail if the two values of type a are equal. Use if a is neither an instance of Show nor of Pretty.

  7. assertNotEqualNoShowVerbose :: (Eq a, HasCallStack) => String -> a -> a -> IO ()

    HTF Test.Framework.HUnitWrapper

    Fail if the two values of type a are equal, supplying an additional message. Use if a is neither an instance of Show nor of Pretty.

  8. assertNothingNoShow :: HasCallStack => Maybe a -> IO ()

    HTF Test.Framework.HUnitWrapper

    Fail if the given Maybe a value is a Just. Use this function if a is not an instance of Show.

  9. assertNothingNoShowVerbose :: HasCallStack => String -> Maybe a -> IO ()

    HTF Test.Framework.HUnitWrapper

    Fail if the given Maybe a value is a Just, supplying an additional error message. Use this function if a is not an instance of Show.

  10. assertRightNoShow :: HasCallStack => Either a b -> IO b

    HTF Test.Framework.HUnitWrapper

    Fail if the given Either a b value is a Left. Use this function if a is not an instance of Show.

Page 269 of many | Previous | Next