(Set<E> input)
| 1330 | final ImmutableMap<E, Integer> inputSet; |
| 1331 | |
| 1332 | PowerSet(Set<E> input) { |
| 1333 | this.inputSet = Maps.indexMap(input); |
| 1334 | checkArgument( |
| 1335 | inputSet.size() <= 30, "Too many elements to create power set: %s > 30", inputSet.size()); |
| 1336 | } |
| 1337 | |
| 1338 | @Override |
| 1339 | public int size() { |
nothing calls this directly
no test coverage detected