Hoogle Search
Within LTS Haskell 24.7 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
arbitraryUnicodeChar :: Gen CharQuickCheck Test.QuickCheck Generates any Unicode character (but not a surrogate)
arbitrary1 :: (Arbitrary1 f, Arbitrary a) => Gen (f a)QuickCheck Test.QuickCheck.Arbitrary No documentation available.
arbitrary2 :: (Arbitrary2 f, Arbitrary a, Arbitrary b) => Gen (f a b)QuickCheck Test.QuickCheck.Arbitrary No documentation available.
arbitraryASCIIChar :: Gen CharQuickCheck Test.QuickCheck.Arbitrary Generates a random ASCII character (0-127).
arbitraryBoundedEnum :: (Bounded a, Enum a) => Gen aQuickCheck Test.QuickCheck.Arbitrary Generates an element of a bounded enumeration.
arbitraryBoundedIntegral :: (Bounded a, Integral a) => Gen aQuickCheck Test.QuickCheck.Arbitrary Generates an integral number. The number is chosen uniformly from the entire range of the type. You may want to use arbitrarySizedBoundedIntegral instead.
arbitraryBoundedRandom :: (Bounded a, Random a) => Gen aQuickCheck Test.QuickCheck.Arbitrary Generates an element of a bounded type. The element is chosen from the entire range of the type.
arbitraryPrintableChar :: Gen CharQuickCheck Test.QuickCheck.Arbitrary Generates a printable Unicode character.
arbitrarySizedBoundedIntegral :: (Bounded a, Integral a) => Gen aQuickCheck Test.QuickCheck.Arbitrary Generates an integral number from a bounded domain. The number is chosen from the entire range of the type, but small numbers are generated more often than big numbers. Inspired by demands from Phil Wadler.
arbitrarySizedFractional :: Fractional a => Gen aQuickCheck Test.QuickCheck.Arbitrary Uniformly generates a fractional number. The number can be positive or negative and its maximum absolute value depends on the size parameter.