Returns a matcher that matches any character matched by either this matcher or other.
(CharMatcher other)
| 465 | * Returns a matcher that matches any character matched by either this matcher or {@code other}. |
| 466 | */ |
| 467 | public CharMatcher or(CharMatcher other) { |
| 468 | return new Or(this, other); |
| 469 | } |
| 470 | |
| 471 | /** |
| 472 | * Returns a {@code char} matcher functionally equivalent to this one, but which may be faster to |