Actions
Bug #10299
closedProbably, a bug in BitVector.isAll{Set,Reset}
Start date:
04/22/2020
Due date:
% Done:
100%
Estimated time:
Detected in build:
git
Platform:
Published in build:
0.4.34-beta-200916
Description
Does it work properly if the bit length is not multiple of 8?
public final boolean isAllSet() {
for(int index = 0; index < this.getByteSize(); ++index) {
if (-1 != this.getByte(index)) {
return false;
}
}
return true;
}
</post>
Actions