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

Method setBits

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

Source from the content-addressed store, hash-verified

1670 }
1671
1672 @GwtIncompatible // java.util.BitSet
1673 @Override
1674 void setBits(BitSet table) {
1675 BitSet tmp = new BitSet();
1676 original.setBits(tmp);
1677 tmp.flip(Character.MIN_VALUE, Character.MAX_VALUE + 1);
1678 table.or(tmp);
1679 }
1680
1681 @Override
1682 public CharMatcher negate() {

Callers

nothing calls this directly

Calls 3

setBitsMethod · 0.45
flipMethod · 0.45
orMethod · 0.45

Tested by

no test coverage detected