- abort() - Method in class easyIO.BacktrackScanner
- 
Roll the input position back to the most recent mark, and erase the mark,
 effectively restarting scanning from that position. 
- accept() - Method in class easyIO.BacktrackScanner
- 
Effect: Erase the previous mark from the input, effectively
  accepting all input up to the current position. 
- advance() - Method in class easyIO.BacktrackScanner
- 
Advance past the next character, if any. 
- advanceToPattern(BacktrackScanner, Recognizer) - Static method in class easyIO.Regex
- 
Advance the scanner position to the point where the pattern recognized by
 ris found, or all the way to the end of the input if it is not
 found.
 
- alt(Recognizer, Recognizer) - Static method in class easyIO.Regex
- 
Recognizes either a or b (regular expression a|b) 
- anyChar(String) - Static method in class easyIO.Regex
- 
Recognizer that matches any single character in the string c
 
- appendSource(Reader, String) - Method in class easyIO.BacktrackScanner
- 
Add r to the input stream after existing inputs.