MCPcopy Create free account
hub / github.com/LFYSec/MScan / or

Method or

src/main/java/pascal/taie/util/collection/SparseBitSet.java:740–749  ·  view source on GitHub ↗
(IBitSet set)

Source from the content-addressed store, hash-verified

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

Callers 1

copyMethod · 0.95

Calls 2

iterateBlocksMethod · 0.95
orMethod · 0.65

Tested by

no test coverage detected