Modify the current IntSet object to contain all elements that are present in itself, the specified set, or both. @param set The set to add to the current set. A null argument is treated as though it were an empty set. @return this (to support chained calls) @excepti
(IntSet set)
| 35 | */ |
| 36 | |
| 37 | IntSet addAll(IntSet set); |
| 38 | |
| 39 | /** |
| 40 | * Return a new {@link IntSet} object containing all elements that are |
no outgoing calls