Hoogle Search

Within LTS Haskell 24.9 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. coarbitraryEnum :: Enum a => a -> Gen b -> Gen b

    tasty-quickcheck Test.Tasty.QuickCheck

    A coarbitrary implementation for enums.

  2. coarbitraryIntegral :: Integral a => a -> Gen b -> Gen b

    tasty-quickcheck Test.Tasty.QuickCheck

    A coarbitrary implementation for integral numbers.

  3. coarbitraryReal :: Real a => a -> Gen b -> Gen b

    tasty-quickcheck Test.Tasty.QuickCheck

    A coarbitrary implementation for real numbers.

  4. coarbitraryShow :: Show a => a -> Gen b -> Gen b

    tasty-quickcheck Test.Tasty.QuickCheck

    coarbitrary helper for lazy people :-).

  5. genericCoarbitrary :: (Generic a, GCoArbitrary (Rep a)) => a -> Gen b -> Gen b

    tasty-quickcheck Test.Tasty.QuickCheck

    Generic CoArbitrary implementation.

  6. liftArbitrary :: Arbitrary1 f => Gen a -> Gen (f a)

    tasty-quickcheck Test.Tasty.QuickCheck

    No documentation available.

  7. liftArbitrary2 :: Arbitrary2 f => Gen a -> Gen b -> Gen (f a b)

    tasty-quickcheck Test.Tasty.QuickCheck

    No documentation available.

  8. antireflexivityOnArbitrary :: (Show a, Arbitrary a) => (a -> a -> Bool) -> Property

    genvalidity-hspec Test.Validity

    antireflexivityOnArbitrary ((<) :: Int -> Int -> Bool)
    
    antireflexivityOnArbitrary ((/=) :: Int -> Int -> Bool)
    
    antireflexivityOnArbitrary ((>) :: Int -> Int -> Bool)
    

  9. antisymmetryOnArbitrary :: (Show a, Eq a, Arbitrary a) => (a -> a -> Bool) -> Property

    genvalidity-hspec Test.Validity

    antisymmetryOnArbitrary ((>) :: Int -> Int -> Bool)
    
    antisymmetryOnArbitrary ((>=) :: Int -> Int -> Bool)
    
    antisymmetryOnArbitrary ((<=) :: Int -> Int -> Bool)
    
    antisymmetryOnArbitrary ((<) :: Int -> Int -> Bool)
    
    antisymmetryOnArbitrary (Data.List.isPrefixOf :: [Int] -> [Int] -> Bool)
    
    antisymmetryOnArbitrary (Data.List.isSuffixOf :: [Int] -> [Int] -> Bool)
    
    antisymmetryOnArbitrary (Data.List.isInfixOf :: [Int] -> [Int] -> Bool)
    
    antisymmetryOnArbitrary ((\x y -> even x && odd y) :: Int -> Int -> Bool)
    

  10. applicativeSpecOnArbitrary :: forall (f :: Type -> Type) . (HasCallStack, Eq (f Int), Show (f Int), Applicative f, Typeable f, Arbitrary (f Int)) => Spec

    genvalidity-hspec Test.Validity

    Standard test spec for properties of Applicative instances for values generated with Arbitrary instances Example usage:

    applicativeSpecOnArbitrary @[]
    

Page 29 of many | Previous | Next