Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

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

  1. catchAnyDeep :: (NFData a, MonadUnliftIO m) => m a -> (SomeException -> m a) -> m a

    unliftio UnliftIO.Exception

    catchDeep specialized to catch all synchronous exception.

  2. handleAny :: MonadUnliftIO m => (SomeException -> m a) -> m a -> m a

    unliftio UnliftIO.Exception

    Flipped version of catchAny.

  3. handleAnyDeep :: (MonadUnliftIO m, NFData a) => (SomeException -> m a) -> m a -> m a

    unliftio UnliftIO.Exception

    Flipped version of catchAnyDeep.

  4. tryAny :: MonadUnliftIO m => m a -> m (Either SomeException a)

    unliftio UnliftIO.Exception

    try specialized to catch all synchronous exceptions.

  5. tryAnyDeep :: (MonadUnliftIO m, NFData a) => m a -> m (Either SomeException a)

    unliftio UnliftIO.Exception

    tryDeep specialized to catch all synchronous exceptions.

  6. eTOOMANYREFS :: Errno

    unliftio UnliftIO.Foreign

    No documentation available.

  7. withMany :: (a -> (b -> res) -> res) -> [a] -> ([b] -> res) -> res

    unliftio UnliftIO.Foreign

    Replicates a withXXX combinator over a list of objects, yielding a list of marshalled objects

  8. waitAny :: MonadIO m => [Async a] -> m (Async a, a)

    unliftio UnliftIO.Internals.Async

    Lifted waitAny.

  9. waitAnyCancel :: MonadIO m => [Async a] -> m (Async a, a)

    unliftio UnliftIO.Internals.Async

    Lifted waitAnyCancel.

  10. waitAnyCatch :: MonadIO m => [Async a] -> m (Async a, Either SomeException a)

    unliftio UnliftIO.Internals.Async

    Lifted waitAnyCatch.

Page 107 of many | Previous | Next