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

Method setBits

output/java_guava/1.4.17/CharMatcher.java:1690–1699  ·  view source on GitHub ↗
(BitSet table)

Source from the content-addressed store, hash-verified

1688 }
1689
1690 @GwtIncompatible // java.util.BitSet
1691 @Override
1692 void setBits(BitSet table) {
1693 BitSet tmp1 = new BitSet();
1694 first.setBits(tmp1);
1695 BitSet tmp2 = new BitSet();
1696 second.setBits(tmp2);
1697 tmp1.and(tmp2);
1698 table.or(tmp1);
1699 }
1700
1701 @Override
1702 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