HomeSort by relevance Sort by last modified time
    Searched defs:MinimalIterable (Results 1 - 2 of 2) sorted by null

  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalIterable.java 54 public final class MinimalIterable<E> implements Iterable<E> {
58 public static <E> MinimalIterable<E> of(E... elements) {
60 return new MinimalIterable<E>(Arrays.asList(elements).iterator());
69 public static <E> MinimalIterable<E> from(final Collection<E> elements) {
70 return (MinimalIterable) of(elements.toArray());
75 private MinimalIterable(Iterator<E> iterator) {
  /external/guice/lib/build/
guava-testlib-19.0.jar 

Completed in 2651 milliseconds