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. arbitraryUnicodeChar :: Gen Char

    QuickCheck Test.QuickCheck

    Generates any Unicode character (but not a surrogate)

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

    QuickCheck Test.QuickCheck.Arbitrary

    No documentation available.

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

    QuickCheck Test.QuickCheck.Arbitrary

    No documentation available.

  4. arbitraryASCIIChar :: Gen Char

    QuickCheck Test.QuickCheck.Arbitrary

    Generates a random ASCII character (0-127).

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

    QuickCheck Test.QuickCheck.Arbitrary

    Generates an element of a bounded enumeration.

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

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

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

    QuickCheck Test.QuickCheck.Arbitrary

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

  8. arbitraryPrintableChar :: Gen Char

    QuickCheck Test.QuickCheck.Arbitrary

    Generates a printable Unicode character.

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

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

  10. arbitrarySizedFractional :: Fractional a => Gen a

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

Page 8 of many | Previous | Next