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. succeedsOnArbitrary2 :: (Show a, Show b, Show (f c), Arbitrary a, Arbitrary b, CanFail f) => (a -> b -> f c) -> Property

    genvalidity-hspec Test.Validity

    No documentation available.

  2. symmetryOnArbitrary :: (Show a, Arbitrary a) => (a -> a -> Bool) -> Property

    genvalidity-hspec Test.Validity

    symmetryOnArbitrary ((==) :: Int -> Int -> Bool)
    
    symmetryOnArbitrary ((/=) :: Int -> Int -> Bool)
    

  3. transitivityOnArbitrary :: (Show a, Arbitrary a) => (a -> a -> Bool) -> Property

    genvalidity-hspec Test.Validity

    transitivityOnArbitrary ((>) :: Int -> Int -> Bool)
    
    transitivityOnArbitrary ((>=) :: Int -> Int -> Bool)
    
    transitivityOnArbitrary ((==) :: Int -> Int -> Bool)
    
    transitivityOnArbitrary ((<=) :: Int -> Int -> Bool)
    
    transitivityOnArbitrary ((<) :: Int -> Int -> Bool)
    
    transitivityOnArbitrary (Data.List.isPrefixOf :: [Int] -> [Int] -> Bool)
    
    transitivityOnArbitrary (Data.List.isSuffixOf :: [Int] -> [Int] -> Bool)
    
    transitivityOnArbitrary (Data.List.isInfixOf :: [Int] -> [Int] -> Bool)
    

  4. validIfSucceedsOnArbitrary :: (Show a, Show b, Arbitrary a, Validity b, CanFail f) => (a -> f b) -> Property

    genvalidity-hspec Test.Validity

    The function produces output that satisfies isValid if it is given input that is generated by arbitrary.

  5. validIfSucceedsOnArbitrary2 :: (Show a, Show b, Show c, Arbitrary a, Arbitrary b, Validity c, CanFail f) => (a -> b -> f c) -> Property

    genvalidity-hspec Test.Validity

    No documentation available.

  6. validIfSucceedsOnArbitrary3 :: (Show a, Show b, Show c, Show d, Arbitrary a, Arbitrary b, Arbitrary c, Validity d, CanFail f) => (a -> b -> c -> f d) -> Property

    genvalidity-hspec Test.Validity

    No documentation available.

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

    genvalidity-hspec Test.Validity.Applicative

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

    applicativeSpecOnArbitrary @[]
    

  8. eqSpecOnArbitrary :: (Show a, Eq a, Typeable a, Arbitrary a) => Spec

    genvalidity-hspec Test.Validity.Eq

    Standard test spec for properties of Eq instances for arbitrary values Example usage:

    eqSpecOnArbitrary @Int
    

  9. functorSpecOnArbitrary :: forall (f :: Type -> Type) . (Eq (f Int), Show (f Int), Functor f, Typeable f, Arbitrary (f Int)) => Spec

    genvalidity-hspec Test.Validity.Functor

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

    functorSpecOnArbitrary @[]
    

  10. monadSpecOnArbitrary :: forall (f :: Type -> Type) . (Eq (f Int), Show (f Int), Monad f, Typeable f, Arbitrary (f Int)) => Spec

    genvalidity-hspec Test.Validity.Monad

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

    monadSpecOnArbitrary @[]
    

Page 33 of many | Previous | Next