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.

  1. 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.

  2. printTestCase :: Testable prop => String -> prop -> Property

    QuickCheck Test.QuickCheck

    Deprecated: Use counterexample instead

  3. 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.

  4. 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.

  5. printAwkExpr :: Expr -> String

    tasty Test.Tasty.Patterns.Printer

    No documentation available.

  6. printTestCase :: Testable prop => String -> prop -> Property

    tasty-quickcheck Test.Tasty.QuickCheck

    Adds the given string to the counterexample if the property fails.

  7. printError :: CritHPrintfType r => String -> r

    criterion Criterion.IO.Printf

    Print an error message.

  8. printC :: forall a (m :: Type -> Type) o . (Show a, MonadIO m) => ConduitT a o m ()

    conduit Conduit

    Print all incoming values to stdout.

  9. 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.

  10. 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.

Page 9 of many | Previous | Next