Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. forAllBlind :: Testable prop => Gen a -> (a -> prop) -> Property

    tasty-quickcheck Test.Tasty.QuickCheck

    Like forAll, but without printing the generated value.

  2. forAllShow :: Testable prop => Gen a -> (a -> String) -> (a -> prop) -> Property

    tasty-quickcheck Test.Tasty.QuickCheck

    Like forAll, but with an explicitly given show function.

  3. forAllShrink :: (Show a, Testable prop) => Gen a -> (a -> [a]) -> (a -> prop) -> Property

    tasty-quickcheck Test.Tasty.QuickCheck

    Like forAll, but tries to shrink the argument for failing test cases.

  4. forAllShrinkBlind :: Testable prop => Gen a -> (a -> [a]) -> (a -> prop) -> Property

    tasty-quickcheck Test.Tasty.QuickCheck

    Like forAllShrink, but without printing the generated value.

  5. forAllShrinkShow :: Testable prop => Gen a -> (a -> [a]) -> (a -> String) -> (a -> prop) -> Property

    tasty-quickcheck Test.Tasty.QuickCheck

    Like forAllShrink, but with an explicitly given show function.

  6. formatReport :: [Report] -> Text -> IO Text

    criterion Criterion.Report

    Format a series of Report values using the given Mustache template.

  7. forArray_ :: (IArray a e, Ix i, Applicative f) => a i e -> (e -> f b) -> f ()

    array Data.Array.Base

    forArray_ is traverseArray_ with its arguments flipped.

  8. forMArrayM_ :: (MArray a e m, Ix i) => a i e -> (e -> m b) -> m ()

    array Data.Array.Base

    forMArrayM_ is mapMArrayM_ with its arguments flipped.

  9. forArray_ :: (IArray a e, Ix i, Applicative f) => a i e -> (e -> f b) -> f ()

    array Data.Array.IArray

    forArray_ is traverseArray_ with its arguments flipped.

  10. forMArrayM_ :: (MArray a e m, Ix i) => a i e -> (e -> m b) -> m ()

    array Data.Array.MArray

    forMArrayM_ is mapMArrayM_ with its arguments flipped.

Page 14 of many | Previous | Next