Return a new IntSet object containing all elements that are present in the current set, the specified set a, or both. This method is similar to #addAll(IntSet), but returns a new IntSet instance instead of modifying the current set. @param a The set to union
(IntSet a)
| 85 | */ |
| 86 | |
| 87 | IntSet or(IntSet a); |
| 88 | |
| 89 | /** |
| 90 | * Return a new {@link IntSet} object containing all elements that are |
no outgoing calls