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.
smallcheckManyStore :: Bool -> Int -> [TypeQ] -> ExpQstore Data.Store.TH deriveManyStoreFromStorable :: (Type -> Bool) -> Q [Dec]store Data.Store.TH.Internal No documentation available.
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.