Hoogle Search

Within LTS Haskell 24.34 (ghc-9.10.3)

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

  1. bracketedSuffixEnd :: BracketedSpec il -> Maybe Char

    commonmark Commonmark.Inlines

    Suffix character.

  2. bracketOnError :: forall (es :: [Effect]) a b c . Eff es a -> (a -> Eff es b) -> (a -> Eff es c) -> Eff es c

    effectful-core Effectful.Exception

    Lifted bracketOnError.

  3. bracket_ :: forall (es :: [Effect]) a b c . Eff es a -> Eff es b -> Eff es c -> Eff es c

    effectful-core Effectful.Exception

    Lifted bracket_.

  4. bracketConduit :: forall (m :: Type -> Type) a b i o r . MonadResource m => IO a -> (a -> IO b) -> (a -> Conduit i o m r) -> Conduit i o m r

    foundation Foundation.Conduit

    No documentation available.

  5. bracketed :: Parser e b -> Parser e b -> Parser e a -> Parser e a

    markup-parse MarkupParse.Internal.FlatParse

    Parser bracketed by two other parsers.

    >>> runParser (bracketed ($(char '[')) ($(char ']')) (many (satisfy (/= ']')))) "[bracketed]"
    OK "bracketed" ""
    

  6. bracketedSB :: Parser e [Char]

    markup-parse MarkupParse.Internal.FlatParse

    Parser bracketed by square brackets.

    >>> runParser bracketedSB "[bracketed]"
    OK "bracketed" ""
    

  7. bracket_sh :: Sh a -> (a -> Sh b) -> (a -> Sh c) -> Sh c

    shelly Shelly

    No documentation available.

  8. bracket_sh :: Sh a -> (a -> Sh b) -> (a -> Sh c) -> Sh c

    shelly Shelly.Lifted

    Deprecated: use Control.Exception.Lifted.bracket instead

  9. bracketByteString :: forall (m :: Type -> Type) a b . MonadResource m => IO a -> (a -> IO ()) -> (a -> ByteStream m b) -> ByteStream m b

    streaming-bytestring Streaming.ByteString.Internal

    Like bracket, but specialized for ByteString.

  10. brackets :: Doc a -> Doc a

    wl-pprint-annotated Text.PrettyPrint.Annotated.WL

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

Page 13 of many | Previous | Next