Creates a new empty integer set
()
| 30 | * Creates a new empty integer set |
| 31 | */ |
| 32 | public IntSet() |
| 33 | { |
| 34 | this(DEFAULT_CAPACITY); |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Creates an empty integer set pre-allocated to store a specific number of |
nothing calls this directly
no test coverage detected