- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for TransformedIterator (0.54 seconds)
-
guava/src/com/google/common/collect/MutableClassToInstanceMap.java
MutableClassToInstanceMap::checkedEntry); } @Override public Iterator<Entry<Class<? extends @NonNull B>, B>> iterator() { return new TransformedIterator< Entry<Class<? extends @NonNull B>, B>, Entry<Class<? extends @NonNull B>, B>>( delegate().iterator()) { @Override Entry<Class<? extends @NonNull B>, B> transform(Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 7.1K bytes - Click Count (0) -
guava/src/com/google/common/collect/AbstractTable.java
return (result == null) ? values = createValues() : result; } Collection<V> createValues() { return new Values(); } Iterator<V> valuesIterator() { return new TransformedIterator<Cell<R, C, V>, V>(cellSet().iterator()) { @Override @ParametricNullness V transform(Cell<R, C, V> cell) { return cell.getValue(); } }; }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 6.7K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Maps.java
@GwtCompatible public final class Maps { private Maps() {} static <K extends @Nullable Object, V extends @Nullable Object> Iterator<K> keyIterator( Iterator<Entry<K, V>> entryIterator) { return new TransformedIterator<Entry<K, V>, K>(entryIterator) { @Override @ParametricNullness K transform(Entry<K, V> entry) { return entry.getKey(); } }; }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 157.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/Maps.java
@GwtCompatible public final class Maps { private Maps() {} static <K extends @Nullable Object, V extends @Nullable Object> Iterator<K> keyIterator( Iterator<Entry<K, V>> entryIterator) { return new TransformedIterator<Entry<K, V>, K>(entryIterator) { @Override @ParametricNullness K transform(Entry<K, V> entry) { return entry.getKey(); } }; }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 163.4K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Multimaps.java
Keys(Multimap<K, V> multimap) { this.multimap = multimap; } @Override Iterator<Multiset.Entry<K>> entryIterator() { return new TransformedIterator<Map.Entry<K, Collection<V>>, Multiset.Entry<K>>( multimap.asMap().entrySet().iterator()) { @Override Multiset.Entry<K> transform(Map.Entry<K, Collection<V>> backingEntry) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 86K bytes - Click Count (0) -
guava/src/com/google/common/collect/Multimaps.java
Keys(Multimap<K, V> multimap) { this.multimap = multimap; } @Override Iterator<Multiset.Entry<K>> entryIterator() { return new TransformedIterator<Map.Entry<K, Collection<V>>, Multiset.Entry<K>>( multimap.asMap().entrySet().iterator()) { @Override Multiset.Entry<K> transform(Map.Entry<K, Collection<V>> backingEntry) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 86.3K bytes - Click Count (0)