Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

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

  1. finally :: Process a -> Process b -> Process a

    distributed-process Control.Distributed.Process.Internal.Primitives

    Deprecated: Use Control.Monad.Catch.finally instead

  2. finally :: forall (r :: EffectRow) a b . Member Resource r => Sem r a -> Sem r b -> Sem r a

    polysemy Polysemy.Resource

    Like bracket, but for the simple case of one computation to run afterward.

  3. finally :: IO a -> IO b -> IO a

    protolude Protolude

    A specialised variant of bracket with just a computation to run afterward.

  4. finally :: IO a -> IO b -> IO a

    ghc-internal GHC.Internal.Control.Exception

    A specialised variant of bracket with just a computation to run afterward.

  5. finally :: IO a -> IO b -> IO a

    ghc-internal GHC.Internal.Control.Exception.Base

    A specialised variant of bracket with just a computation to run afterward.

  6. finally :: IO a -> IO b -> IO a

    ghc-internal GHC.Internal.IO

    No documentation available.

  7. finally :: MonadException m => m a -> m b -> m a

    exception-transformers Control.Monad.Exception

    Run a computation and always perform a second, final computation even if an exception is raised. If a short-circuiting monad transformer such as ErrorT or MaybeT is used to transform a MonadException monad, then the implementation of finally for the transformed monad must guarantee that the final action is also always performed when any short-circuiting occurs.

  8. finally :: IO a -> IO b -> IO a

    ghc-lib-parser GHC.Utils.Exception

    A specialised variant of bracket with just a computation to run afterward.

  9. finally :: MonadSafe m => m a -> Base m b -> m a

    pipes-safe Pipes.Safe

    Analogous to finally from Control.Monad.Catch, except this also protects against premature termination

  10. finally :: forall (es :: [Effect]) a b . Eff es a -> Eff es b -> Eff es a

    effectful-core Effectful.Exception

    Lifted finally.

Page 2 of many | Previous | Next