|  |  | 
| Navigation | 
Syntax   
 constraintis any character class, a literal or a keyword non-terminal Symbol.
Description  Using  <<, the parser will not accept theSymbolif it is not immediately preceded by theterminalin the input string. If the start of the symbol coincides with start of the inout, the constraint will fail and the symbol will not be accepted.Using !<<, the parser will not accept theSymbolif it is immediately preceded by theterminalin the input string. If the start of the symbol coincides with start of the inout, the constraint will always succeed and the symbol is accepted.  |