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.

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

    QuickCheck Test.QuickCheck

    No documentation available.

  2. arbitraryASCIIChar :: Gen Char

    QuickCheck Test.QuickCheck

    Generates a random ASCII character (0-127).

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

    QuickCheck Test.QuickCheck

    Generates an element of a bounded enumeration.

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

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

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

    QuickCheck Test.QuickCheck

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

  6. arbitraryPrintableChar :: Gen Char

    QuickCheck Test.QuickCheck

    Generates a printable Unicode character.

  7. arbitrarySizedBoundedIntegral :: (Bounded a, Integral a) => Gen a

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

  8. arbitrarySizedFractional :: Fractional a => Gen a

    QuickCheck Test.QuickCheck

    Uniformly generates a fractional number. The number can be positive or negative and its maximum absolute value depends on the size parameter.

  9. arbitrarySizedIntegral :: Integral a => Gen a

    QuickCheck Test.QuickCheck

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

  10. arbitrarySizedNatural :: Integral a => Gen a

    QuickCheck Test.QuickCheck

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

Page 7 of many | Previous | Next