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