Documentation for java.util.BitSet class does not describe behavior when you try
to create a BitSet with a negative number of bits:
BitSet b = new BitSet( -1 );
Documentation also does not describe what happens when you try to access
a negative bit such as:
int i = b.get( -1 );
to create a BitSet with a negative number of bits:
BitSet b = new BitSet( -1 );
Documentation also does not describe what happens when you try to access
a negative bit such as:
int i = b.get( -1 );