{@inheritDoc}
(Collection other)
| 507 | * {@inheritDoc} |
| 508 | */ |
| 509 | @Override |
| 510 | public boolean containsAll(Collection other) { |
| 511 | if (other instanceof IntRange range) { |
| 512 | return getFrom() <= range.getFrom() && range.getTo() <= getTo(); |
| 513 | } |
| 514 | return super.containsAll(other); |
| 515 | } |
| 516 | |
| 517 | /** |
| 518 | * {@inheritDoc} |