Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for fromIterable (0.35 sec)

  1. android/guava/src/com/google/common/collect/Iterables.java

      }
    
      /**
       * Returns a view containing the result of applying {@code function} to each element of {@code
       * fromIterable}.
       *
       * <p>The returned iterable's iterator supports {@code remove()} if {@code fromIterable}'s
       * iterator does. After a successful {@code remove()} call, {@code fromIterable} no longer
       * contains the corresponding element.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 43.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Iterables.java

      }
    
      /**
       * Returns a view containing the result of applying {@code function} to each element of {@code
       * fromIterable}.
       *
       * <p>The returned iterable's iterator supports {@code remove()} if {@code fromIterable}'s
       * iterator does. After a successful {@code remove()} call, {@code fromIterable} no longer
       * contains the corresponding element.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 43.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Converter.java

       */
      public Iterable<B> convertAll(Iterable<? extends A> fromIterable) {
        checkNotNull(fromIterable, "fromIterable");
        return () ->
            new Iterator<B>() {
              private final Iterator<? extends A> fromIterator = fromIterable.iterator();
    
              @Override
              public boolean hasNext() {
                return fromIterator.hasNext();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jun 18 21:43:06 UTC 2025
    - 22.8K bytes
    - Viewed (0)
Back to top