Removed chain and chainl, as all people will really need is list.

This commit is contained in:
Meredith L. Patterson 2012-05-12 16:04:20 +01:00
parent 650a25a6b5
commit 60fd846b2f
2 changed files with 0 additions and 15 deletions

View file

@ -188,9 +188,6 @@ const parser_t* optional(const parser_t* p);
/* Given a parser, p, this parser succeeds if p succeeds, but doesn't include p's result in the result. */
const parser_t* ignore(const parser_t* p);
const parser_t* chain(const parser_t* p1, const parser_t* p2, const parser_t* p3);
const parser_t* chainl(const parser_t* p1, const parser_t* p2);
/* Given a parser, p, and a parser for a separator, sep, this parser matches a list of things that p can parse, separated by sep.
* For example, if p is repeat1(range('0','9')) and sep is ch(','), list(p, sep) will match a comma-separated list of integers.
*/