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.
-
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.
-
parser-regex Regex.Internal.Parser No documentation available.
-
parser-regex Regex.Internal.Regex A repeating value or a finite list.
-
parser-regex Regex.Internal.Regex No documentation available.
foldlMany :: (b -> a -> b) -> b -> RE c a -> RE c bparser-regex Regex.Internal.Regex 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.Internal.Regex No documentation available.
foldlManyMin :: (b -> a -> b) -> b -> RE c a -> RE c bparser-regex Regex.Internal.Regex 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.Internal.Regex No documentation available.