Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Global eps

boost::parser::eps

Synopsis

// In header: <boost/parser/parser.hpp>

unspecified eps;

Description

The epsilon parser. This matches anything, and consumes no input. If used with an optional predicate, like eps(pred), it matches iff pred(ctx) evaluates to true, where ctx is the parser context.


PrevUpHomeNext