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

Method setBits

output/java_guava/1.4.13/CharMatcher.java:1708–1717  ·  view source on GitHub ↗
(BitSet table)

Source from the content-addressed store, hash-verified

1706 }
1707
1708 @GwtIncompatible // java.util.BitSet
1709 @Override
1710 void setBits(BitSet table) {
1711 BitSet tmp1 = new BitSet();
1712 first.setBits(tmp1);
1713 BitSet tmp2 = new BitSet();
1714 second.setBits(tmp2);
1715 tmp1.and(tmp2);
1716 table.or(tmp1);
1717 }
1718
1719 @Override
1720 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