Hoogle Search

Within LTS Haskell 24.50 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. parallelPrefix :: Parallel (m :: Type -> Type) (state :: (Type -> Type) -> Type) -> [Action m state]

    hedgehog Hedgehog

    The sequential prefix.

  2. parallel :: forall gen (m :: Type -> Type) state . (MonadGen gen, MonadTest m) => Range Int -> Range Int -> (forall (v :: Type -> Type) . () => state v) -> [Command gen m state] -> gen (Parallel m state)

    hedgehog Hedgehog.Gen

    Given the initial model state and set of commands, generates prefix actions to be run sequentially, followed by two branches to be run in parallel.

  3. small :: MonadGen m => m a -> m a

    hedgehog Hedgehog.Gen

    Make a generator smaller by scaling its size parameter.

  4. unicodeAll :: MonadGen m => m Char

    hedgehog Hedgehog.Gen

    Generates a Unicode character, including noncharacters and invalid standalone surrogates: '0'..'1114111'

  5. tryAll :: MonadCatch m => m a -> m (Either SomeException a)

    hedgehog Hedgehog.Internal.Exception

    No documentation available.

  6. small :: MonadGen m => m a -> m a

    hedgehog Hedgehog.Internal.Gen

    Make a generator smaller by scaling its size parameter.

  7. unicodeAll :: MonadGen m => m Char

    hedgehog Hedgehog.Internal.Gen

    Generates a Unicode character, including noncharacters and invalid standalone surrogates: '0'..'1114111'

  8. forAll :: forall (m :: Type -> Type) a . (Monad m, Show a, HasCallStack) => Gen a -> PropertyT m a

    hedgehog Hedgehog.Internal.Property

    Generates a random input for the test by running the provided generator.

  9. forAllT :: forall (m :: Type -> Type) a . (Monad m, Show a, HasCallStack) => GenT m a -> PropertyT m a

    hedgehog Hedgehog.Internal.Property

    Generates a random input for the test by running the provided generator.

  10. forAllWith :: forall (m :: Type -> Type) a . (Monad m, HasCallStack) => (a -> String) -> Gen a -> PropertyT m a

    hedgehog Hedgehog.Internal.Property

    Generates a random input for the test by running the provided generator. This is a the same as forAll but allows the user to provide a custom rendering function. This is useful for values which don't have a Show instance.

Page 222 of many | Previous | Next