MCPcopy Create free account
hub / github.com/ReadyTalk/avian / BitSet

Method BitSet

classpath/java/util/BitSet.java:40–46  ·  view source on GitHub ↗
(int bitLength)

Source from the content-addressed store, hash-verified

38 }
39
40 public BitSet(int bitLength) {
41 if (bitLength % BITS_PER_LONG == 0) {
42 enlarge(longPosition(bitLength));
43 } else {
44 enlarge(longPosition(bitLength) + 1);
45 }
46 }
47
48 public BitSet() {
49 enlarge(1);

Callers

nothing calls this directly

Calls 2

enlargeMethod · 0.95
longPositionMethod · 0.95

Tested by

no test coverage detected