A sensible default implementation of #indexOf, in terms of #listIterator(). If you override #listIterator(), you may wish to override #indexOf to forward to this implementation. @since 7.0
(@Nullable Object element)
| 166 | |
| 167 | |
| 168 | protected int standardIndexOf(@Nullable Object element) { |
| 169 | return Lists.indexOfImpl(this, element); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * A sensible default implementation of {@link #lastIndexOf}, in terms of |
nothing calls this directly
no test coverage detected