- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for lastIndexOfRandomAccess (0.1 sec)
-
android/guava/src/com/google/common/collect/Lists.java
} /** An implementation of {@link List#lastIndexOf(Object)}. */ static int lastIndexOfImpl(List<?> list, @Nullable Object element) { if (list instanceof RandomAccess) { return lastIndexOfRandomAccess(list, element); } else { ListIterator<?> listIterator = list.listIterator(list.size()); while (listIterator.hasPrevious()) { if (Objects.equals(element, listIterator.previous())) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 42.2K bytes - Viewed (0)