(Set<E> input)
| 1376 | final ImmutableMap<E, Integer> inputSet; |
| 1377 | |
| 1378 | PowerSet(Set<E> input) { |
| 1379 | this.inputSet = Maps.indexMap(input); |
| 1380 | checkArgument(inputSet.size() <= 30, "Too many elements to create power set: %s > 30", inputSet.size()); |
| 1381 | } |
| 1382 | |
| 1383 | @Override |
| 1384 | public int size() { |
nothing calls this directly
no test coverage detected