static bool anyBitSetInRange(BitSet b, int from, int to) { for (int i = from; i < to; i++) if (b.get(i)) true; false; }