void set(int bit, [bool value = true]) { if (value) { _bits.add(bit); } else { _bits.remove(bit); } }