(ObjHashSet<? extends T> that)
| 69 | } |
| 70 | |
| 71 | public void addAll(ObjHashSet<? extends T> that) { |
| 72 | for (int i = 0, n = that.size(); i < n; i++) { |
| 73 | this.add(that.get(i)); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | public void addAll(ObjList<? extends T> that) { |
| 78 | for (int i = 0, n = that.size(); i < n; i++) { |