epsilonWith<R> function
Returns a parser that consumes nothing and succeeds with result
.
Implementation
@useResult
Parser<R> epsilonWith<R>(R result) => EpsilonParser<R>(result);
Returns a parser that consumes nothing and succeeds with result
.
@useResult
Parser<R> epsilonWith<R>(R result) => EpsilonParser<R>(result);