Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fromIterable (0.08 sec)

  1. android/guava/src/com/google/common/base/Converter.java

       */
      public Iterable<B> convertAll(Iterable<? extends A> fromIterable) {
        checkNotNull(fromIterable, "fromIterable");
        return new Iterable<B>() {
          @Override
          public Iterator<B> iterator() {
            return new Iterator<B>() {
              private final Iterator<? extends A> fromIterator = fromIterable.iterator();
    
              @Override
              public boolean hasNext() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. 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 Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.8K bytes
    - Viewed (0)
Back to top