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

  2. printAwkExpr :: Expr -> String

    tasty Test.Tasty.Patterns.Printer

    No documentation available.

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

    tasty-quickcheck Test.Tasty.QuickCheck

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

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

    criterion Criterion.IO.Printf

    Print an error message.

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

    conduit Conduit

    Print all incoming values to stdout.

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

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

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

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

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

Page 9 of many | Previous | Next