Creates a bit set that contains given bits.
(int... bits)
| 364 | * Creates a bit set that contains given bits. |
| 365 | */ |
| 366 | static IBitSet of(int... bits) { |
| 367 | IBitSet result = newBitSet(false); |
| 368 | for (int i : bits) { |
| 369 | result.set(i); |
no outgoing calls