- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for nextEntry (0.04 sec)
-
android/guava/src/com/google/common/collect/LinkedHashMultimap.java
return new Iterator<Entry<K, V>>() { @Nullable ValueEntry<K, V> nextEntry = multimapIterationChain.firstEntry; @Nullable ValueEntry<K, V> toRemove; @Override public boolean hasNext() { return nextEntry != null; } @Override public Entry<K, V> next() { ValueEntry<K, V> entry = nextEntry; if (entry == null) { throw new NoSuchElementException();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19.1K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java
lastEntry = nextEntry; nextEntry = null; return new WriteThroughEntry(lastEntry.getKey(), lastEntry.getValue().getValue()); } @Override public boolean hasNext() { if (nextEntry == null) { while (iterator.hasNext()) { Entry<K, Timestamped<V>> next = iterator.next(); if (!isExpired(next.getValue())) { nextEntry = next; return true;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.8K bytes - Viewed (0)