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

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

  3. 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" ""
    

  4. bracketedSB :: Parser e [Char]

    markup-parse MarkupParse.Internal.FlatParse

    Parser bracketed by square brackets.

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

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

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

  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