Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. forWithKey_ :: (FoldableWithKey t, Applicative f) => t a -> (Key t -> a -> f b) -> f ()

    keys Data.Key

    No documentation available.

  2. fork :: Scope -> IO a -> IO (Thread a)

    ki Ki

    Create a child thread to execute an action within a scope. Note: The child thread does not mask asynchronous exceptions, regardless of the parent thread's masking state. To create a child thread with a different initial masking state, use forkWith.

  3. forkTry :: Exception e => Scope -> IO a -> IO (Thread (Either e a))

    ki Ki

    Like fork, but the child thread does not propagate exceptions that are both:

  4. forkTryWith :: Exception e => Scope -> ThreadOptions -> IO a -> IO (Thread (Either e a))

    ki Ki

    Variant of forkTry that takes an additional options argument.

  5. forkWith :: Scope -> ThreadOptions -> IO a -> IO (Thread a)

    ki Ki

    Variant of fork that takes an additional options argument.

  6. forkWith_ :: Scope -> ThreadOptions -> IO Void -> IO ()

    ki Ki

    Variant of forkWith for threads that never return.

  7. fork_ :: Scope -> IO Void -> IO ()

    ki Ki

    Variant of fork for threads that never return.

  8. forAll :: (Show a, Testable prop) => Gen a -> (a -> prop) -> Property

    massiv-test Test.Massiv.Utils

    Explicit universal quantification: uses an explicitly given test case generator.

  9. forAllBlind :: Testable prop => Gen a -> (a -> prop) -> Property

    massiv-test Test.Massiv.Utils

    Like forAll, but without printing the generated value.

  10. forAllM :: forall (m :: Type -> Type) a b . (Monad m, Show a) => Gen a -> (a -> PropertyM m b) -> PropertyM m b

    massiv-test Test.Massiv.Utils

    Quantification in monadic properties to pick, with a notation similar to forAll. Note: values generated by forAllM do not shrink.

Page 86 of many | Previous | Next