(E object)
| 79 | /// @return `true` when this `HashSet` did not already contain |
| 80 | /// the object, `false` otherwise |
| 81 | @Override |
| 82 | public boolean add(E object) { |
| 83 | return backingMap.put(object, this) == null; |
| 84 | } |
| 85 | |
| 86 | /// Removes all elements from this `HashSet`, leaving it empty. |
| 87 | /// |
no test coverage detected