- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for pollNext (0.04 sec)
-
android/guava/src/com/google/common/collect/Iterators.java
} }; } /** * Deletes and returns the next value from the iterator, or returns {@code null} if there is no * such value. */ static <T extends @Nullable Object> @Nullable T pollNext(Iterator<T> iterator) { if (iterator.hasNext()) { T result = iterator.next(); iterator.remove(); return result; } else { return null; } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 50.5K bytes - Viewed (0)