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