A sensible definition of #equals(Object) in terms of #size and #iterator. If you override either of those methods, you may wish to override #equals(Object) to forward to this implementation. @since 7.0
(@Nullable Object object)
| 247 | */ |
| 248 | |
| 249 | @Beta |
| 250 | protected boolean standardEquals(@Nullable Object object) { |
| 251 | return Lists.equalsImpl(this, object); |
| 252 | } |
| 253 | |
| 254 | /** |
| 255 | * A sensible definition of {@link #hashCode} in terms of {@link #iterator}. |
nothing calls this directly
no test coverage detected