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. bracketP :: forall (m :: Type -> Type) a l i o u r . MonadResource m => IO a -> (a -> IO ()) -> (a -> Pipe l i o u m r) -> Pipe l i o u m r

    conduit Data.Conduit.Internal

    Bracket a pipe computation between allocation and release of a resource. We guarantee, via the MonadResource context, that the resource finalization is exception safe. However, it will not necessarily be prompt, in that running a finalizer may wait until the ResourceT block exits. Since 0.5.0

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

    unliftio UnliftIO.Exception

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

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

    unliftio UnliftIO.Exception

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

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

    unliftio UnliftIO.Exception

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

  5. brackets :: Doc -> Doc

    pretty Text.PrettyPrint

    No documentation available.

  6. brackets :: Doc a -> Doc a

    pretty Text.PrettyPrint.Annotated

    No documentation available.

  7. brackets :: Doc a -> Doc a

    pretty Text.PrettyPrint.Annotated.HughesPJ

    No documentation available.

  8. brackets :: Doc -> Doc

    pretty Text.PrettyPrint.HughesPJ

    No documentation available.

  9. brackets :: Doc ann -> Doc ann

    prettyprinter Prettyprinter

    >>> brackets "·"
    [·]
    

  10. brackets :: Doc ann -> Doc ann

    prettyprinter Prettyprinter.Symbols.Ascii

    >>> brackets "·"
    [·]
    

Page 7 of many | Previous | Next