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

Method setBits

output/java_guava/1.4.19/CharMatcher.java:1653–1660  ·  view source on GitHub ↗
(BitSet table)

Source from the content-addressed store, hash-verified

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