Hoogle Search

Within LTS Haskell 24.48 (ghc-9.10.3)

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

  1. forkOSWithUnmaskN :: MonadConc m => String -> ((forall a . () => m a -> m a) -> m ()) -> m (ThreadId m)

    concurrency Control.Monad.Conc.Class

    Like forkOSWithUnmask, but the thread is given a name which may be used to present more useful debugging information.

    forkOSWithUnmaskN _ = forkOSWithUnmask
    

  2. forkOn :: MonadConc m => Int -> m () -> m (ThreadId m)

    concurrency Control.Monad.Conc.Class

    Fork a computation to happen on a specific processor. The specified int is the capability number, typically capabilities correspond to physical processors or cores but this is implementation dependent. The int is interpreted modulo to the total number of capabilities as returned by getNumCapabilities.

  3. forkOnN :: MonadConc m => String -> Int -> m () -> m (ThreadId m)

    concurrency Control.Monad.Conc.Class

    Like forkOn, but the thread is given a name which may be used to present more useful debugging information.

  4. forkOnWithUnmask :: MonadConc m => Int -> ((forall a . () => m a -> m a) -> m ()) -> m (ThreadId m)

    concurrency Control.Monad.Conc.Class

    Like forkWithUnmask, but the child thread is pinned to the given CPU, as with forkOn.

    forkOnWithUnmask = forkOnWithUnmaskN ""
    

  5. forkOnWithUnmaskN :: MonadConc m => String -> Int -> ((forall a . () => m a -> m a) -> m ()) -> m (ThreadId m)

    concurrency Control.Monad.Conc.Class

    Like forkWithUnmaskN, but the child thread is pinned to the given CPU, as with forkOn.

    forkOnWithUnmaskN _ = forkOnWithUnmask
    

  6. forkWithUnmask :: MonadConc m => ((forall a . () => m a -> m a) -> m ()) -> m (ThreadId m)

    concurrency Control.Monad.Conc.Class

    Like fork, but the child thread is passed a function that can be used to unmask asynchronous exceptions. This function should not be used within a mask or uninterruptibleMask.

    forkWithUnmask = forkWithUnmaskN ""
    

  7. forkWithUnmaskN :: MonadConc m => String -> ((forall a . () => m a -> m a) -> m ()) -> m (ThreadId m)

    concurrency Control.Monad.Conc.Class

    Like forkWithUnmask, but the thread is given a name which may be used to present more useful debugging information.

    forkWithUnmaskN _ = forkWithUnmask
    

  8. formatExternal :: Externalize ξ => ξ -> Rope

    core-data Core.Encoding.External

    Convert a value into an authoritative, stable textual representation for use externally.

  9. forevery :: Searchable a => (a -> Bool) -> Bool

    countable Data.Searchable

    No documentation available.

  10. forsome :: Searchable a => (a -> Bool) -> Bool

    countable Data.Searchable

    No documentation available.

Page 136 of many | Previous | Next