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. bracketedPasteStarted :: ByteString -> Bool

    vty-unix Graphics.Vty.Platform.Unix.Input.Paste

    Does the input start a bracketed paste?

  2. bracketConnection :: (Monad m, IConnection conn) => (forall c . () => m c -> (c -> m ()) -> (c -> m a) -> m a) -> (forall b . () => IO b -> m b) -> IO conn -> (conn -> m a) -> m a

    HDBC-session Database.HDBC.Session

    Generalized session with bracketed HDBC connection. Run a transaction on a HDBC IConnection and close the connection.

  3. bracketOnError :: MonadUnliftIO m => m a -> (a -> m b) -> (a -> m c) -> m c

    classy-prelude-yesod ClassyPrelude.Yesod

    Same as bracket, but only perform the cleanup if an exception is thrown.

  4. bracketOnError_ :: MonadUnliftIO m => m a -> m b -> m c -> m c

    classy-prelude-yesod ClassyPrelude.Yesod

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

  5. 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

    classy-prelude-yesod ClassyPrelude.Yesod

    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

  6. bracket_ :: MonadUnliftIO m => m a -> m b -> m c -> m c

    classy-prelude-yesod ClassyPrelude.Yesod

    Same as bracket, but does not pass the acquired resource to cleanup and use functions. For more information, see base's bracket_.

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

    incipit-core IncipitCore

    Allocate a resource, use it, and clean it up afterwards if an error occurred.

  8. 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_

  9. brackets :: Doc ann -> Doc ann

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

    >>> brackets "·"
    [·]
    

  10. brackets :: Doc -> Doc

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

    No documentation available.

Page 20 of many | Previous | Next