Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

  1. tooManyRequests429 :: Set h Status => h () (With Response '[Status])

    webgear-core WebGear.Core.Trait.Status

    Too Many Requests 429 response

  2. pAnyElement :: forall (m :: Type -> Type) a . Monad m => ParserT m a -> ParserT m a

    xmlbf Xmlbf

    pAnyElement p runs a ParserT p inside the Element node at the current position, if any. Otherwise, if no such element exists, this parser fails. You can recover the name of the matched element using pName inside the given ParserT. However, if you already know beforehand the name of the element that you want to match, it's better to use pElement rather than pAnyElement. Leading whitespace is ignored. If you need to preserve that whitespace for some reason, capture it using pText before using pAnyElement. Consumes the matched element from the parser state.

  3. insertManyFirstChild :: [Node] -> Cursor -> Maybe Cursor

    xmlhtml Text.XmlHtml.Cursor

    Inserts a list of Nodes as the first children of the current element.

  4. insertManyLastChild :: [Node] -> Cursor -> Maybe Cursor

    xmlhtml Text.XmlHtml.Cursor

    Inserts a list of Nodes as the last children of the current element.

  5. insertManyLeft :: [Node] -> Cursor -> Cursor

    xmlhtml Text.XmlHtml.Cursor

    Inserts a list of new Nodes to the left of the current position.

  6. insertManyRight :: [Node] -> Cursor -> Cursor

    xmlhtml Text.XmlHtml.Cursor

    Inserts a list of new Nodes to the right of the current position.

  7. checkpointMany :: (MonadCatch m, HasCallStack) => [Annotation] -> m a -> m a

    annotated-exception Control.Exception.Annotated

    Add the list of Annotation to any exception thrown in the following action.

  8. checkpointMany :: (MonadUnliftIO m, HasCallStack) => [Annotation] -> m a -> m a

    annotated-exception Control.Exception.Annotated.UnliftIO

    Like checkpointMany, but uses MonadUnliftIO instead of MonadCatch.

  9. data Many state x

    automaton Data.Stream.Internal

    Internal state of many and some

  10. runReturningMany :: (MonadBeam be m, FromBackendRow be x) => BeamSqlBackendSyntax be -> (m (Maybe x) -> m a) -> m a

    beam-core Database.Beam

    Run a query determined by the given syntax, providing an action that will be called to consume the results from the database (if any). The action will get a reader action that can be used to fetch the next row. When this reader action returns Nothing, there are no rows left to consume. When the reader action returns, the database result is freed.

Page 174 of many | Previous | Next