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.
tooManyRequests429 :: Set h Status => h () (With Response '[Status])webgear-core WebGear.Core.Trait.Status Too Many Requests 429 response
pAnyElement :: forall (m :: Type -> Type) a . Monad m => ParserT m a -> ParserT m axmlbf 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.
insertManyFirstChild :: [Node] -> Cursor -> Maybe Cursorxmlhtml Text.XmlHtml.Cursor Inserts a list of Nodes as the first children of the current element.
insertManyLastChild :: [Node] -> Cursor -> Maybe Cursorxmlhtml Text.XmlHtml.Cursor Inserts a list of Nodes as the last children of the current element.
insertManyLeft :: [Node] -> Cursor -> Cursorxmlhtml Text.XmlHtml.Cursor Inserts a list of new Nodes to the left of the current position.
insertManyRight :: [Node] -> Cursor -> Cursorxmlhtml Text.XmlHtml.Cursor Inserts a list of new Nodes to the right of the current position.
checkpointMany :: (MonadCatch m, HasCallStack) => [Annotation] -> m a -> m aannotated-exception Control.Exception.Annotated Add the list of Annotation to any exception thrown in the following action.
checkpointMany :: (MonadUnliftIO m, HasCallStack) => [Annotation] -> m a -> m aannotated-exception Control.Exception.Annotated.UnliftIO Like checkpointMany, but uses MonadUnliftIO instead of MonadCatch.
-
automaton Data.Stream.Internal Internal state of many and some
-
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.