A sensible definition of #removeAll in terms of #iterator and #remove. If you override iterator or remove, you may wish to override #removeAll to forward to this implementation. @since 7.0 (this version overrides the ForwardingCollection vers
(Collection<?> collection)
| 76 | */ |
| 77 | |
| 78 | @Override |
| 79 | protected boolean standardRemoveAll(Collection<?> collection) { |
| 80 | return Sets.removeAllImpl(this, checkNotNull(collection)); // for GWT |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * A sensible definition of {@link #equals} in terms of {@link #size} and |