factory IsoBitSet.from(Iterable<int> bits) { final IsoBitSet set = IsoBitSet(); for (final int bit in bits) { set.set(bit); } return set; }