- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for wrapEntry (0.06 sec)
-
guava/src/com/google/common/collect/AbstractMapBasedMultimap.java
} @Override public @Nullable K higherKey(@ParametricNullness K key) { return sortedMap().higherKey(key); } @Override public @Nullable Entry<K, Collection<V>> firstEntry() { Entry<K, Collection<V>> entry = sortedMap().firstEntry(); return (entry == null) ? null : wrapEntry(entry); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 12 15:51:57 UTC 2025 - 48.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/StandardTable.java
if (backingRowMap == null) { return Spliterators.emptySpliterator(); } return CollectSpliterators.map(backingRowMap.entrySet().spliterator(), this::wrapEntry); } Entry<C, V> wrapEntry(Entry<C, V> entry) { return new ForwardingMapEntry<C, V>() { @Override protected Entry<C, V> delegate() { return entry; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 30.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeMultiset.java
rootReference.clear(); } else { // TODO(cpovirk): Perhaps we can optimize in this case, too? Iterators.clear(entryIterator()); } } private Entry<E> wrapEntry(AvlNode<E> baseEntry) { return new Multisets.AbstractEntry<E>() { @Override @ParametricNullness public E getElement() { return baseEntry.getElement(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 33.8K bytes - Viewed (0)