Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
deriveManyStorePrimVector :: Q [Dec]store Data.Store.TH.Internal No documentation available.
deriveManyStoreUnboxVector :: Q [Dec]store Data.Store.TH.Internal No documentation available.
mkManyHasTypeHash :: [Q Type] -> Q [Dec]store Data.Store.TypeHash Deprecated: Use of Data.Store.TypeHash isn't recommended, as the hashes are too unstable for most uses. Please instead consider using Data.Store.Version. See https://github.com/fpco/store/issues/53
mkManyHasTypeHash :: [Q Type] -> Q [Dec]store Data.Store.TypeHash.Internal Deprecated: Use of Data.Store.TypeHash isn't recommended, as the hashes are too unstable for most uses. Please instead consider using Data.Store.Version. See https://github.com/fpco/store/issues/53
reifyManyTyDecls :: ((Name, Info) -> Q (Bool, [Name])) -> [Name] -> Q [(Name, Info)]store Data.Store.TypeHash.Internal No documentation available.
combineMany :: C a v => (a, T a) -> (v, T v) -> vsynthesizer-core Synthesizer.Interpolation.Class No documentation available.
insertMany :: Monoid a => a -> TextZipper a -> TextZipper atext-zipper Data.Text.Zipper Insert many characters at the current cursor position. Move the cursor to the end of the inserted text.
many :: Alternative f => f a -> f [a]turtle Turtle Zero or more.
Examples
>>> many (putStr "la") lalalalalalalalala... * goes on forever *
>>> many Nothing Just []
>>> take 5 <$> many (Just 1) * hangs forever *
Note that this function can be used with Parsers based on Applicatives. In that case many parser will attempt to parse parser zero or more times until it fails.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.