(IBitSet set)
| 738 | } |
| 739 | |
| 740 | @Override |
| 741 | public boolean or(IBitSet set) { |
| 742 | if (this == set) { |
| 743 | return false; |
| 744 | } |
| 745 | if (!(set instanceof SparseBitSet other)) { |
| 746 | return super.or(set); |
| 747 | } |
| 748 | return iterateBlocks(this, other, new OrAction(this)); |
| 749 | } |
| 750 | |
| 751 | private static class OrAction extends ChangeAction { |
| 752 |
no test coverage detected