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.

  1. arbitrarySizedIntegral :: Integral a => Gen a

    QuickCheck Test.QuickCheck.Arbitrary

    Generates an integral number. The number can be positive or negative and its maximum absolute value depends on the size parameter.

  2. arbitrarySizedNatural :: Integral a => Gen a

    QuickCheck Test.QuickCheck.Arbitrary

    Generates a natural number. The number's maximum value depends on the size parameter.

  3. arbitraryUnicodeChar :: Gen Char

    QuickCheck Test.QuickCheck.Arbitrary

    Generates any Unicode character (but not a surrogate)

  4. arbitrary1 :: (Arbitrary1 f, Arbitrary a) => Gen (f a)

    tasty-quickcheck Test.Tasty.QuickCheck

    No documentation available.

  5. arbitrary2 :: (Arbitrary2 f, Arbitrary a, Arbitrary b) => Gen (f a b)

    tasty-quickcheck Test.Tasty.QuickCheck

    No documentation available.

  6. arbitraryASCIIChar :: Gen Char

    tasty-quickcheck Test.Tasty.QuickCheck

    Generates a random ASCII character (0-127).

  7. arbitraryBoundedEnum :: (Bounded a, Enum a) => Gen a

    tasty-quickcheck Test.Tasty.QuickCheck

    Generates an element of a bounded enumeration.

  8. arbitraryBoundedIntegral :: (Bounded a, Integral a) => Gen a

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

  9. arbitraryBoundedRandom :: (Bounded a, Random a) => Gen a

    tasty-quickcheck Test.Tasty.QuickCheck

    Generates an element of a bounded type. The element is chosen from the entire range of the type.

  10. arbitraryPrintableChar :: Gen Char

    tasty-quickcheck Test.Tasty.QuickCheck

    Generates a printable Unicode character.

Page 9 of many | Previous | Next