Returns a matcher that matches any character not matched by this matcher.
()
| 510 | |
| 511 | |
| 512 | public CharMatcher negate() { |
| 513 | return new Negated(this); |
| 514 | } |
| 515 | |
| 516 | /** |
| 517 | * Returns a matcher that matches any character matched by both this matcher and {@code other}. |
no outgoing calls
no test coverage detected