Package-level declarations

Types

Link copied to clipboard

Implementation of ScanningParserBase. As long as any of the terminates returns success, hasNext will be true. You can also reverse this behavior (while->until) by setting isWhile to false.

Link copied to clipboard

An implementation of IMfmParser that searches the input string until hasNext returns false. Starts counting from the search start position and increments the counter if hasNext is true. If hasNext is false, the range from the search start position to the position of the counter is returned as search results.

Link copied to clipboard

Implementation of ScanningParserBase. hasNext becomes false when all terminates return success. If they don't return success, it becomes true.