Hoogle Search

Within LTS Haskell 24.46 (ghc-9.10.3)

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

  1. bracketedPrefix :: BracketedSpec il -> Maybe Char

    commonmark Commonmark.Inlines

    Prefix character.

  2. bracketedSuffix :: BracketedSpec il -> ReferenceMap -> Text -> Parsec [Tok] () (il -> il)

    commonmark Commonmark.Inlines

    Parser for suffix after brackets. Returns a constructor. Second parameter is the raw key.

  3. bracketedSuffixEnd :: BracketedSpec il -> Maybe Char

    commonmark Commonmark.Inlines

    Suffix character.

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

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

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

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

  8. bracketedSB :: Parser e [Char]

    markup-parse MarkupParse.Internal.FlatParse

    Parser bracketed by square brackets.

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

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

    shelly Shelly

    No documentation available.

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

    shelly Shelly.Lifted

    Deprecated: use Control.Exception.Lifted.bracket instead

Page 13 of many | Previous | Next