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.
forAllBlind :: Testable prop => Gen a -> (a -> prop) -> Propertytasty-quickcheck Test.Tasty.QuickCheck Like forAll, but without printing the generated value.
forAllShow :: Testable prop => Gen a -> (a -> String) -> (a -> prop) -> Propertytasty-quickcheck Test.Tasty.QuickCheck Like forAll, but with an explicitly given show function.
forAllShrink :: (Show a, Testable prop) => Gen a -> (a -> [a]) -> (a -> prop) -> Propertytasty-quickcheck Test.Tasty.QuickCheck Like forAll, but tries to shrink the argument for failing test cases.
forAllShrinkBlind :: Testable prop => Gen a -> (a -> [a]) -> (a -> prop) -> Propertytasty-quickcheck Test.Tasty.QuickCheck Like forAllShrink, but without printing the generated value.
forAllShrinkShow :: Testable prop => Gen a -> (a -> [a]) -> (a -> String) -> (a -> prop) -> Propertytasty-quickcheck Test.Tasty.QuickCheck Like forAllShrink, but with an explicitly given show function.
formatReport :: [Report] -> Text -> IO Textcriterion Criterion.Report Format a series of Report values using the given Mustache template.
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.
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.
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.
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.