Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. bracket_ :: IO a -> IO b -> IO c -> IO c

    base Control.Exception

    A variant of bracket where the return value from the first computation is not required.

  2. bracketOnError :: IO a -> (a -> IO b) -> (a -> IO c) -> IO c

    base Control.Exception.Base

    Like bracket, but only performs the final action if there was an exception raised by the in-between computation.

  3. bracket_ :: IO a -> IO b -> IO c -> IO c

    base Control.Exception.Base

    A variant of bracket where the return value from the first computation is not required.

  4. brackets :: Doc -> Doc

    template-haskell Language.Haskell.TH.PprLib

    No documentation available.

  5. bracketOnError :: (HasCallStack, MonadMask m) => m a -> (a -> m c) -> (a -> m b) -> m b

    exceptions Control.Monad.Catch

    Like bracket, but only performs the final action if an error is thrown by the in-between computation.

  6. bracket_ :: (HasCallStack, MonadMask m) => m a -> m c -> m b -> m b

    exceptions Control.Monad.Catch

    Version of bracket without any value being passed to the second and third actions.

  7. brackets :: GenTokenParser s u (m :: Type -> Type) -> forall a . () => ParsecT s u m a -> ParsecT s u m a

    parsec Text.Parsec.Token

    Lexeme parser brackets p parses p enclosed in brackets ('[' and ']'), returning the value of p.

  8. brackets :: GenTokenParser s u (m :: Type -> Type) -> forall a . () => ParsecT s u m a -> ParsecT s u m a

    parsec Text.ParserCombinators.Parsec.Token

    Lexeme parser brackets p parses p enclosed in brackets ('[' and ']'), returning the value of p.

  9. brackets :: Doc ann -> Doc ann

    optparse-applicative Options.Applicative.Help.Pretty

    >>> brackets "·"
    [·]
    

  10. bracketP :: forall (m :: Type -> Type) a i o r . MonadResource m => IO a -> (a -> IO ()) -> (a -> ConduitT i o m r) -> ConduitT i o m r

    conduit Data.Conduit

    Bracket a conduit computation between allocation and release of a resource. Two guarantees are given about resource finalization:

    1. It will be prompt. The finalization will be run as early as possible.
    2. It is exception safe. Due to usage of resourcet, the finalization will be run in the event of any exceptions.
    Since 0.5.0

Page 6 of many | Previous | Next