- NamedToken - Class in jfun.parsec.tokens
-
A token that has a name.
- never() - Static method in class jfun.parsec.pattern.CharPredicates
-
A predicate that always returns false.
- never() - Static method in class jfun.parsec.pattern.Patterns
-
A Pattern object that always returns MISMATCH.
- not() - Method in class jfun.parsec.Parser
-
fails if 'this' succeeds.
- not(String) - Method in class jfun.parsec.Parser
-
fails if 'this' succeeds.
- not(String, String) - Method in class jfun.parsec.Parser
-
fails if 'this' succeeds.
- not(String, Parser<?>) - Static method in class jfun.parsec.Parsers
-
Succeeds if Parser p fails; Fails otherwise.
- not(String, Parser<?>, String) - Static method in class jfun.parsec.Parsers
-
Succeeds if Parser p fails; Fails otherwise.
- not(CharPredicate) - Static method in class jfun.parsec.pattern.CharPredicates
-
Negate a CharPredicate object.
- not() - Method in class jfun.parsec.pattern.Pattern
-
If this pattern matches, return mismatch.
- not(Pattern) - Static method in class jfun.parsec.pattern.Patterns
-
Matches with match length 0 if the Pattern object pp mismatch.
- notAmong(char[]) - Static method in class jfun.parsec.pattern.CharPredicates
-
not among chars.
- notAmong(char[]) - Static method in class jfun.parsec.pattern.Patterns
-
Succeed with match length 1
if the current character in the input is not among the given characters.
- notAmong(String, char[], String) - Static method in class jfun.parsec.Scanners
-
succeed and consume the current character if it is not equal to any of the given characters.
- notAmong(String, char[]) - Static method in class jfun.parsec.Scanners
-
succeed and consume the current character if it is not equal to any of the given characters.
- notAmong(char[], String) - Static method in class jfun.parsec.Scanners
-
succeed and consume the current character if it is not equal to any of the given characters.
- notAmong(char[]) - Static method in class jfun.parsec.Scanners
-
succeed and consume the current character if it is not equal to any of the given characters.
- notChar(char) - Static method in class jfun.parsec.pattern.CharPredicates
-
!= a.
- notChar(char) - Static method in class jfun.parsec.pattern.Patterns
-
Succeed with match length 1
if the current character in the input is not the same as character c.
- notChar(char, String) - Static method in class jfun.parsec.Scanners
-
succeed and consume the current character if it is equal to ch.
- notChar(String, char, String) - Static method in class jfun.parsec.Scanners
-
succeed and consume the current character if it is not equal to ch.
- notChar(char) - Static method in class jfun.parsec.Scanners
-
succeed and consume the current character if it is not equal to ch.
- notChar(String, char) - Static method in class jfun.parsec.Scanners
-
succeed and consume the current character if it is not equal to ch.
- notConsumed(Parser<R>) - Static method in class jfun.parsec.Parsers
-
First run the Parser p, if it succeeds with no input consumed,
notConsumed() succeeds; if it fails, notConsumed() fails; if it succeeds
and consumes input, the input consumption is undone and notConsumed()
fails.
- notConsumed(Parser<R>, String) - Static method in class jfun.parsec.Parsers
-
First run the Parser p, if it succeeds with no input consumed,
notConsumed() succeeds; if it fails, notConsumed() fails; if it succeeds
and consumes input, the input consumption is undone and notConsumed()
fails.
- notConsumed(String, Parser<R>) - Static method in class jfun.parsec.Parsers
-
First run the Parser p, if it succeeds with no input consumed,
notConsumed() succeeds; if it fails, notConsumed() fails; if it succeeds
and consumes input, the input consumption is undone and notConsumed()
fails.
- notConsumed(String, Parser<R>, String) - Static method in class jfun.parsec.Parsers
-
First run the Parser p, if it succeeds with no input consumed,
notConsumed() succeeds; if it fails, notConsumed() fails; if it succeeds
and consumes input, the input consumption is undone and notConsumed()
fails.
- notRange(char, char) - Static method in class jfun.parsec.pattern.CharPredicates
-
not between a and b inclusive.
- notRange(char, char) - Static method in class jfun.parsec.pattern.Patterns
-
Succeed with match length 1
if the current character in the input is not between character c1 and c2.
- notString(String) - Static method in class jfun.parsec.pattern.Patterns
-
Matches a character if the input has at least 1 character
and does not match the given string.
- notStringCI(String) - Static method in class jfun.parsec.pattern.Patterns
-
Matches a character if the input has at least 1 character
and does not match the given string case insensitively.