Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
printToHandleFinalizerExceptionHandler :: Handle -> SomeException -> IO ()base GHC.Weak.Finalize An exception handler for Handle finalization that prints the error to the given Handle, but doesn't rethrow it.
printTestCase :: Testable prop => String -> prop -> PropertyQuickCheck Test.QuickCheck Deprecated: Use counterexample instead
printStatistics :: (?colors :: Bool) => Statistics -> Time -> IO ()tasty Test.Tasty.Ingredients.ConsoleReporter printStatistics reports test success/failure statistics and time it took to run. The Time results is intended to be filled in by the TestReporter callback. The colors ImplicitParam controls whether coloured output is used.
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.