checkers-0.4.9.5: Check properties on standard classes and data structures.

Safe HaskellSafe
LanguageHaskell98

Test.QuickCheck.Instances.Tuple

Synopsis

Documentation

(>*<) :: Gen a -> Gen b -> Gen (a, b) Source #

Generates a 2-tuple using its arguments to generate the parts.

(>**<) :: Gen a -> Gen b -> Gen c -> Gen (a, b, c) Source #

Generates a 3-tuple using its arguments to generate the parts.

(>***<) :: Gen a -> Gen b -> Gen c -> Gen d -> Gen (a, b, c, d) Source #

Generates a 4-tuple using its arguments to generate the parts.

(>****<) :: Gen a -> Gen b -> Gen c -> Gen d -> Gen e -> Gen (a, b, c, d, e) Source #

Generates a 5-tuple using its arguments to generate the parts.