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

Method setBits

output/java_guava/1.4.16/CharMatcher.java:1654–1661  ·  view source on GitHub ↗
(BitSet table)

Source from the content-addressed store, hash-verified

1652 }
1653
1654 @GwtIncompatible // java.util.BitSet
1655 @Override
1656 void setBits(BitSet table) {
1657 BitSet tmp = new BitSet();
1658 original.setBits(tmp);
1659 tmp.flip(Character.MIN_VALUE, Character.MAX_VALUE + 1);
1660 table.or(tmp);
1661 }
1662
1663 @Override
1664 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