Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for TransformedIterator (0.18 sec)

  1. 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();
          }
        };
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  2. android/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();
          }
        };
      }
    
      @WeakOuter
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java

            return MutableClassToInstanceMap.this.delegate().entrySet();
          }
    
          @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(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:10:29 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterators.java

      public static <F extends @Nullable Object, T extends @Nullable Object> Iterator<T> transform(
          Iterator<F> fromIterator, Function<? super F, ? extends T> function) {
        checkNotNull(function);
        return new TransformedIterator<F, T>(fromIterator) {
          @ParametricNullness
          @Override
          T transform(@ParametricNullness F from) {
            return function.apply(from);
          }
        };
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 50.5K bytes
    - Viewed (0)
  5. 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) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
  6. 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) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.9K bytes
    - Viewed (0)
Back to top