Returns true if the bit at index is set.
index
bool test(int index) { _checkBounds(index); final wordIndex = index ~/ 32; final bitIndex = index % 32; return (_words[wordIndex] & (1 << bitIndex)) != 0; }