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.
printStatisticsNoTime :: (?colors :: Bool) => Statistics -> IO ()tasty Test.Tasty.Ingredients.ConsoleReporter printStatisticsNoTime reports test success/failure statistics The colors ImplicitParam controls whether coloured output is used.
printAwkExpr :: Expr -> Stringtasty Test.Tasty.Patterns.Printer No documentation available.
printTestCase :: Testable prop => String -> prop -> Propertytasty-quickcheck Test.Tasty.QuickCheck Adds the given string to the counterexample if the property fails.
printError :: CritHPrintfType r => String -> rcriterion Criterion.IO.Printf Print an error message.
printC :: forall a (m :: Type -> Type) o . (Show a, MonadIO m) => ConduitT a o m ()conduit Conduit Print all incoming values to stdout.
printTree :: (MonadIO m, Show a) => Gen a -> m ()hedgehog Hedgehog.Gen Run a generator with a random seed and print the resulting shrink tree.
Gen.printTree (Gen.enum 'a' 'f')
'd' ├╼'a' ├╼'b' │ └╼'a' └╼'c' ├╼'a' └╼'b' └╼'a'
This may not terminate when the tree is very large.printTreeWith :: (MonadIO m, Show a) => Size -> Seed -> Gen a -> m ()hedgehog Hedgehog.Gen Print the shrink tree produced by a generator, for the given size and seed. Use printTree to generate a value from a random seed.
printWith :: (MonadIO m, Show a) => Size -> Seed -> Gen a -> m ()hedgehog Hedgehog.Gen Print the value produced by a generator, and the first level of shrinks, for the given size and seed. Use print to generate a value from a random seed.
printTree :: (MonadIO m, Show a) => Gen a -> m ()hedgehog Hedgehog.Internal.Gen Run a generator with a random seed and print the resulting shrink tree.
Gen.printTree (Gen.enum 'a' 'f')
'd' ├╼'a' ├╼'b' │ └╼'a' └╼'c' ├╼'a' └╼'b' └╼'a'
This may not terminate when the tree is very large.printTreeWith :: (MonadIO m, Show a) => Size -> Seed -> Gen a -> m ()hedgehog Hedgehog.Internal.Gen Print the shrink tree produced by a generator, for the given size and seed. Use printTree to generate a value from a random seed.