MCPcopy Create free account
hub / github.com/antlr/codebuff / setBits

Method setBits

corpus/java/training/guava/base/CharMatcher.java:1611–1620  ·  view source on GitHub ↗
(BitSet table)

Source from the content-addressed store, hash-verified

1609 }
1610
1611 @GwtIncompatible // java.util.BitSet
1612 @Override
1613 void setBits(BitSet table) {
1614 BitSet tmp1 = new BitSet();
1615 first.setBits(tmp1);
1616 BitSet tmp2 = new BitSet();
1617 second.setBits(tmp2);
1618 tmp1.and(tmp2);
1619 table.or(tmp1);
1620 }
1621
1622 @Override
1623 public String toString() {

Callers

nothing calls this directly

Calls 3

setBitsMethod · 0.45
andMethod · 0.45
orMethod · 0.45

Tested by

no test coverage detected