group method

Parser<Expression> group()

Implementation

Parser<Expression> group() =>
    (char('(') & expression & char(')')).pick(1).cast();