Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

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

    unliftio UnliftIO.Async

    Lifted waitAnyCatchCancel.

  2. waitAnyCatchSTM :: [Async a] -> STM (Async a, Either SomeException a)

    unliftio UnliftIO.Async

    A version of waitAnyCatch that can be used inside an STM transaction.

  3. waitAnySTM :: [Async a] -> STM (Async a, a)

    unliftio UnliftIO.Async

    A version of waitAny that can be used inside an STM transaction.

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

    unliftio UnliftIO.Exception

    catch specialized to catch all synchronous exceptions.

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

    unliftio UnliftIO.Exception

    catchDeep specialized to catch all synchronous exception.

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

    unliftio UnliftIO.Exception

    Flipped version of catchAny.

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

    unliftio UnliftIO.Exception

    Flipped version of catchAnyDeep.

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

    unliftio UnliftIO.Exception

    try specialized to catch all synchronous exceptions.

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

    unliftio UnliftIO.Exception

    tryDeep specialized to catch all synchronous exceptions.

  10. eTOOMANYREFS :: Errno

    unliftio UnliftIO.Foreign

    No documentation available.

Page 108 of many | Previous | Next