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.

  1. manyList :: RE c [c]

    parser-regex Regex.List

    Parse any list. Biased towards matching more.

  2. manyListMin :: RE c [c]

    parser-regex Regex.List

    Parse any list. Minimal, i.e. biased towards matching less.

  3. manyMin :: RE c a -> RE c [a]

    parser-regex Regex.List

    Zero or more. Minimal, i.e. biased towards matching less.

  4. manyStringOf :: CharSet -> RE Char String

    parser-regex Regex.List

    Parse any String containing members of the CharSet. Biased towards matching more.

  5. manyStringOfMin :: CharSet -> RE Char String

    parser-regex Regex.List

    Parse any String containing members of the CharSet. Minimal, i.e. biased towards matching less.

  6. manyr :: RE c a -> RE c (Many a)

    parser-regex Regex.List

    Zero or more. Biased towards matching more. Also see the section "Looping parsers".

  7. data Many a

    parser-regex Regex.Text

    A repeating value or a finite list.

  8. foldlMany :: (b -> a -> b) -> b -> RE c a -> RE c b

    parser-regex Regex.Text

    Parse many occurences of the given RE. Biased towards matching more. Also see the section "Looping parsers".

  9. foldlManyMin :: (b -> a -> b) -> b -> RE c a -> RE c b

    parser-regex Regex.Text

    Parse many occurences of the given RE. Minimal, i.e. biased towards matching less.

  10. manyMin :: RE c a -> RE c [a]

    parser-regex Regex.Text

    Zero or more. Minimal, i.e. biased towards matching less.

Page 237 of many | Previous | Next