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.
arbitrarySizedIntegral :: Integral a => Gen aQuickCheck Test.QuickCheck.Arbitrary 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.Arbitrary Generates a natural number. The number's maximum value depends on the size parameter.
arbitraryUnicodeChar :: Gen CharQuickCheck Test.QuickCheck.Arbitrary Generates any Unicode character (but not a surrogate)
arbitrary1 :: (Arbitrary1 f, Arbitrary a) => Gen (f a)tasty-quickcheck Test.Tasty.QuickCheck No documentation available.
arbitrary2 :: (Arbitrary2 f, Arbitrary a, Arbitrary b) => Gen (f a b)tasty-quickcheck Test.Tasty.QuickCheck No documentation available.
arbitraryASCIIChar :: Gen Chartasty-quickcheck Test.Tasty.QuickCheck Generates a random ASCII character (0-127).
arbitraryBoundedEnum :: (Bounded a, Enum a) => Gen atasty-quickcheck Test.Tasty.QuickCheck Generates an element of a bounded enumeration.
arbitraryBoundedIntegral :: (Bounded a, Integral a) => Gen atasty-quickcheck Test.Tasty.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 atasty-quickcheck Test.Tasty.QuickCheck Generates an element of a bounded type. The element is chosen from the entire range of the type.
arbitraryPrintableChar :: Gen Chartasty-quickcheck Test.Tasty.QuickCheck Generates a printable Unicode character.