hweblib-0.2: Haskell Web Library

Network.Parser.Rfc2234

Contents

Synopsis

Primitive Parsers (6.1 Core Rules)

manyN :: Int -> Parser a -> Parser [a]Source

Match a parser at least n times.

manyNtoM :: Int -> Int -> Parser a -> Parser [a]Source

Match a parser at least n times, but no more than m times.