Hoogle Search
Within LTS Haskell 24.57 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
ManyState :: StateT s m a -> ManyState (m :: Type -> Type) s aparameterized Parameterized.Control.Monad.Trans.State.Strict No documentation available.
runManyState :: ManyState (m :: Type -> Type) s a -> StateT s m aparameterized Parameterized.Control.Monad.Trans.State.Strict No documentation available.
-
parser-regex Regex.Base A repeating value or a finite list.
foldlMany :: (b -> a -> b) -> b -> RE c a -> RE c bparser-regex Regex.Base Parse many occurences of the given RE. Biased towards matching more. Also see the section "Looping parsers".
foldlMany' :: (b -> a -> b) -> b -> RE c a -> RE c bparser-regex Regex.Base No documentation available.
foldlManyMin :: (b -> a -> b) -> b -> RE c a -> RE c bparser-regex Regex.Base Parse many occurences of the given RE. Minimal, i.e. biased towards matching less.
foldlManyMin' :: (b -> a -> b) -> b -> RE c a -> RE c bparser-regex Regex.Base No documentation available.
-
parser-regex Regex.Base Zero or more. Minimal, i.e. biased towards matching less.
manyr :: RE c a -> RE c (Many a)parser-regex Regex.Base Zero or more. Biased towards matching more. Also see the section "Looping parsers".
toFindMany :: RE c a -> RE c [a]parser-regex Regex.Base Results in all non-overlapping occurences of the given RE. Always succeeds.