Returns true if this HashSet has no elements, false otherwise. @return true if this HashSet has no elements, false otherwise. @see #size
()
| 143 | * @see #size |
| 144 | */ |
| 145 | @Override |
| 146 | public boolean isEmpty() { |
| 147 | return backingMap.isEmpty(); |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Returns an Iterator on the elements of this {@code HashSet}. |