(char... chars)
| 811 | } |
| 812 | |
| 813 | private static BitSet bitSetOf(char... chars) { |
| 814 | BitSet bitset = new BitSet(); |
| 815 | for (char c : chars) { |
| 816 | bitset.set(c); |
| 817 | } |
| 818 | return bitset; |
| 819 | } |
| 820 | |
| 821 | private static BitSet or(BitSet... bitsets) { |
| 822 | BitSet bitset = new BitSet(); |
no test coverage detected