All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.robobinding.util.Iterators Maven / Gradle / Ivy

The newest version!
package org.robobinding.util;

import java.util.Collection;
import java.util.Iterator;

/**
 * Migrated from {@link com.google.common.collect.Iterators}
 * @since 1.0
 * @author Cheng Wei
 *
 */
class Iterators {
  /**
   * Adds all elements in {@code iterator} to {@code collection}. The iterator
   * will be left exhausted: its {@code hasNext()} method will return
   * {@code false}.
   *
   * @return {@code true} if {@code collection} was modified as a result of this
   *         operation
   */
  public static  boolean addAll(Collection addTo, Iterator iterator) {
    Preconditions.checkNotNull(addTo);
    Preconditions.checkNotNull(iterator);
    boolean wasModified = false;
    while (iterator.hasNext()) {
      wasModified |= addTo.add(iterator.next());
    }
    return wasModified;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy