static BitSet leftShiftBitSet(int n, BitSet bs) { if (n == 0 || bs == null) ret bs; ret bs.get(n, bs.length()); }