Hoogle Search
Within LTS Haskell 24.3 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
arbitrary2 :: (Arbitrary2 f, Arbitrary a, Arbitrary b) => Gen (f a b)QuickCheck Test.QuickCheck No documentation available.
arbitraryASCIIChar :: Gen CharQuickCheck Test.QuickCheck Generates a random ASCII character (0-127).
arbitraryBoundedEnum :: (Bounded a, Enum a) => Gen aQuickCheck Test.QuickCheck Generates an element of a bounded enumeration.
arbitraryBoundedIntegral :: (Bounded a, Integral a) => Gen aQuickCheck Test.QuickCheck 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 Generates an element of a bounded type. The element is chosen from the entire range of the type.
arbitraryPrintableChar :: Gen CharQuickCheck Test.QuickCheck Generates a printable Unicode character.
arbitrarySizedBoundedIntegral :: (Bounded a, Integral a) => Gen aQuickCheck Test.QuickCheck 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 Uniformly generates a fractional number. The number can be positive or negative and its maximum absolute value depends on the size parameter.
arbitrarySizedIntegral :: Integral a => Gen aQuickCheck Test.QuickCheck Generates an integral number. The number can be positive or negative and its maximum absolute value depends on the size parameter.
arbitrarySizedNatural :: Integral a => Gen aQuickCheck Test.QuickCheck Generates a natural number. The number's maximum value depends on the size parameter.