Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 91 of 91 for unmodifiableIterator (0.17 seconds)

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

        private UnmodifiableIterable(Iterable<? extends T> iterable) {
          this.iterable = iterable;
        }
    
        @Override
        public Iterator<T> iterator() {
          return Iterators.unmodifiableIterator(iterable.iterator());
        }
    
        @Override
        public void forEach(Consumer<? super T> action) {
          iterable.forEach(action);
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 43.6K bytes
    - Click Count (0)
Back to Top