More precisely, if
{@code long[] longs = s.toLongArray();}
then {@code longs.length == (s.length()+63)/64} and
{@code s.get(n) == ((longs[n/64] & (1L<<(n%64))) != 0)}
for all {@code n < 64 * longs.length}.
@return a long array containing a little-endian representationof all the bits in this bit set
@since 1.7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|