Returns a matcher that matches any character matched by either this matcher or other.
(CharMatcher other)
| 528 | |
| 529 | |
| 530 | public CharMatcher or(CharMatcher other) { |
| 531 | return new Or(this, other); |
| 532 | } |
| 533 | |
| 534 | /** |
| 535 | * Returns a {@code char} matcher functionally equivalent to this one, but which may be faster to |