Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. bracket_ :: forall (r :: EffectRow) a b c . Member Resource r => Sem r a -> Sem r b -> Sem r c -> Sem r c

    incipit-core IncipitCore

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

  2. brackets :: Doc ann -> Doc ann

    prettyprinter-compat-annotated-wl-pprint Text.PrettyPrint.Annotated.Leijen

    >>> brackets "·"
    [·]
    

  3. brackets :: Doc -> Doc

    prettyprinter-compat-wl-pprint Text.PrettyPrint.Leijen

    No documentation available.

  4. brackets :: (Monoid s, IsString s) => s -> s

    string-combinators Data.String.Combinators

    Wrap a string-like in [...].

  5. bracketEitherT :: forall (m :: Type -> Type) e a b c . Monad m => EitherT e m a -> (a -> EitherT e m b) -> (a -> EitherT e m c) -> EitherT e m c

    transformers-either Control.Monad.Trans.Either

    Acquire a resource in EitherT and then perform an action with it, cleaning up afterwards regardless of left. This function does not clean up in the event of an exception. Prefer bracketExceptionT in any impure setting.

  6. bracketExceptionT :: forall (m :: Type -> Type) e a c b . MonadMask m => EitherT e m a -> (a -> EitherT e m c) -> (a -> EitherT e m b) -> EitherT e m b

    transformers-either Control.Monad.Trans.Either

    Acquire a resource in EitherT and then perform an action with it, cleaning up afterwards regardless of left or exception. Like bracketEitherT, but the cleanup is called even when the bracketed function throws an exception. Exceptions in the bracketed function are caught to allow the cleanup to run and then rethrown.

  7. brackets :: Doc -> Doc

    wl-pprint Text.PrettyPrint.Leijen

    Document (brackets x) encloses document x in square brackets, "[" and "]".

  8. BracketOrigin :: CtOrigin

    ghc GHC.Tc.Types.Origin

    No documentation available.

  9. BracketSkol :: SkolemInfoAnon

    ghc GHC.Tc.Types.Origin

    No documentation available.

  10. BracketExp :: l -> Bracket l -> Exp l

    haskell-src-exts Language.Haskell.Exts.Syntax

    template haskell bracket expression

Page 21 of many | Previous | Next