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.
forkIOWithUnmask :: MonadUnliftIO m => ((forall a . () => m a -> m a) -> m ()) -> m ThreadIdunliftio UnliftIO.Concurrent Unlifted version of forkIOWithUnmask.
forkOS :: MonadUnliftIO m => m () -> m ThreadIdunliftio UnliftIO.Concurrent Unflifted version of forkOS.
forkOn :: MonadUnliftIO m => Int -> m () -> m ThreadIdunliftio UnliftIO.Concurrent Unlifted version of forkOn.
forkOnWithUnmask :: MonadUnliftIO m => Int -> ((forall a . () => m a -> m a) -> m ()) -> m ThreadIdunliftio UnliftIO.Concurrent Unlifted version of forkOnWithUnmask.
forkWithUnmask :: MonadUnliftIO m => ((forall a . () => m a -> m a) -> m ()) -> m ThreadIdunliftio UnliftIO.Concurrent Deprecated: forkWithUnmask has been renamed to forkIOWithUnmask
forConcurrently :: (MonadUnliftIO m, Traversable t) => t a -> (a -> m b) -> m (t b)unliftio UnliftIO.Internals.Async Similar to mapConcurrently but with arguments flipped
forConcurrently_ :: (MonadUnliftIO m, Foldable f) => f a -> (a -> m b) -> m ()unliftio UnliftIO.Internals.Async Similar to mapConcurrently_ but with arguments flipped
forAll :: forall (m :: Type -> Type) a . (Monad m, Show a, HasCallStack) => Gen a -> PropertyT m ahedgehog Hedgehog Generates a random input for the test by running the provided generator.
-
hedgehog Hedgehog 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.
forAll :: forall (m :: Type -> Type) a . (Monad m, Show a, HasCallStack) => Gen a -> PropertyT m ahedgehog Hedgehog.Internal.Property Generates a random input for the test by running the provided generator.