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. processBrackets :: IsInline a => [BracketedSpec a] -> ReferenceMap -> [Chunk a] -> Map Text SourcePos -> Either (DState a) [Chunk a]

    commonmark Commonmark.Inlines

    Process square brackets: links, images, and the span extension. DState tracks the current position and backtracking limits. If this function succeeds, returning Right, it will return a list of chunks, now annotated with bracket information. If this function fails, it will return `Left DState`. This can happen if a chunk straddles a link destination, like this link text looks like code` ^-----------------^ To recover, the caller must re-Chunk everything after the end paren. The bottoms parameter, in particular, is DState's stackBottoms, and is used to prevent things before the paren from being re-parsed.

  2. syntaxBracketedSpecs :: SyntaxSpec (m :: Type -> Type) il bl -> [BracketedSpec il]

    commonmark Commonmark.Syntax

    Defines bracketed inline containers (inli, image)

  3. _closeBracket :: Parser ()

    dhall Dhall.Parser.Token

    Parse the ] symbol

  4. _openBracket :: Parser ()

    dhall Dhall.Parser.Token

    Parse the [] symbol

  5. generalBracket :: forall (es :: [Effect]) a c b . Eff es a -> (a -> ExitCase c -> Eff es b) -> (a -> Eff es c) -> Eff es (c, b)

    effectful-core Effectful.Exception

    Generalization of bracket. See generalBracket for more information.

  6. inlineBracket :: IO a -> (a -> IO b) -> (a -> IO c) -> IO c

    effectful-core Effectful.Internal.Utils

    Version of bracket with an INLINE pragma to work around https://gitlab.haskell.org/ghc/ghc/-/issues/22824.

  7. class MonadCatch m => MonadBracket (m :: Type -> Type)

    foundation Foundation.Monad

    Monad that can ensure cleanup actions are performed even in the case of exceptions, both synchronous and asynchronous. This usually excludes continuation-based monads.

  8. generalBracket :: MonadBracket m => m a -> (a -> b -> m ignored1) -> (a -> SomeException -> m ignored2) -> (a -> m b) -> m b

    foundation Foundation.Monad

    A generalized version of the standard bracket function which allows distinguishing different exit cases.

  9. pattern KEY_botleftsqbracket :: Word32

    gi-gdk3 GI.Gdk.Constants

    No description available in the introspection data.

  10. pattern KEY_botrightsqbracket :: Word32

    gi-gdk3 GI.Gdk.Constants

    No description available in the introspection data.

Page 37 of many | Previous | Next