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.
bracket_ :: forall (es :: [Effect]) a b c . Eff es a -> Eff es b -> Eff es c -> Eff es ceffectful-core Effectful.Exception Lifted bracket_.
-
foundation Foundation.Conduit No documentation available.
bracketed :: Parser e b -> Parser e b -> Parser e a -> Parser e amarkup-parse MarkupParse.Internal.FlatParse Parser bracketed by two other parsers.
>>> runParser (bracketed ($(char '[')) ($(char ']')) (many (satisfy (/= ']')))) "[bracketed]" OK "bracketed" ""
bracketedSB :: Parser e [Char]markup-parse MarkupParse.Internal.FlatParse Parser bracketed by square brackets.
>>> runParser bracketedSB "[bracketed]" OK "bracketed" ""
bracketSep :: PolyParse p => p bra -> p sep -> p ket -> p a -> p [a]polyparse Text.ParserCombinators.Poly.Base Parse a list of items, discarding the start, end, and separator items.
bracketSep :: PolyParse p => p bra -> p sep -> p ket -> p a -> p [a]polyparse Text.ParserCombinators.Poly.StateLazy Parse a list of items, discarding the start, end, and separator items.
bracket_sh :: Sh a -> (a -> Sh b) -> (a -> Sh c) -> Sh cshelly Shelly No documentation available.
bracket_sh :: Sh a -> (a -> Sh b) -> (a -> Sh c) -> Sh cshelly Shelly.Lifted Deprecated: use Control.Exception.Lifted.bracket instead
-
streaming-bytestring Streaming.ByteString.Internal Like bracket, but specialized for ByteString.
-
wl-pprint-annotated Text.PrettyPrint.Annotated.WL Document (brackets x) encloses document x in square brackets, "[" and "]".