Class Iterables


  • @GwtCompatible(emulated=true)
    public final class Iterables
    extends Object
    An assortment of mainly legacy static utility methods that operate on or return objects of type Iterable. Except as noted, each method has a corresponding Iterator-based method in the Iterators class.

    Java 8 users: several common uses for this class are now more comprehensively addressed by the new Stream library. Read the method documentation below for comparisons. This class is not being deprecated, but we gently encourage you to migrate to streams.

    Performance notes: Unless otherwise noted, all of the iterables produced in this class are lazy, which means that their iterators only advance the backing iteration when absolutely necessary.

    See the Guava User Guide article on Iterables.

    Since:
    2.0
    Author:
    Kevin Bourrillion, Jared Levy
    • Method Detail

      • size

        public static int size​(Iterable<?> iterable)
        Returns the number of elements in iterable.
      • removeIf

        @CanIgnoreReturnValue
        public static <T extends @Nullable Object> boolean removeIf​(Iterable<T> removeFrom,
                                                                    Predicate<? super T> predicate)
        Removes, from an iterable, every element that satisfies the provided predicate.

        Removals may or may not happen immediately as each element is tested against the predicate. The behavior of this method is not specified if predicate is dependent on removeFrom.

        Java 8 users: if removeFrom is a Collection, use removeFrom.removeIf(predicate) instead.

        Parameters:
        removeFrom - the iterable to (potentially) remove elements from
        predicate - a predicate that determines whether an element should be removed
        Returns:
        true if any elements were removed from the iterable
        Throws:
        UnsupportedOperationException - if the iterable does not support remove().
        Since:
        2.0
      • elementsEqual

        public static boolean elementsEqual​(Iterable<?> iterable1,
                                            Iterable<?> iterable2)
        Determines whether two iterables contain equal elements in the same order. More specifically, this method returns true if iterable1 and iterable2 contain the same number of elements and every element of iterable1 is equal to the corresponding element of iterable2.
      • toString

        public static String toString​(Iterable<?> iterable)
        Returns a string representation of iterable, with the format [e1, e2, ..., en] (that is, identical to Arrays .toString(Iterables.toArray(iterable))). Note that for most implementations of Collection, collection.toString() also gives the same result, but that behavior is not generally guaranteed.
      • getOnlyElement

        public static <T extends @Nullable Object> T getOnlyElement​(Iterable<? extends T> iterable,
                                                                    T defaultValue)
        Returns the single element contained in iterable, or defaultValue if the iterable is empty.

        Java 8 users: the Stream equivalent to this method is stream.collect(MoreCollectors.toOptional()).orElse(defaultValue).

        Throws:
        IllegalArgumentException - if the iterator contains multiple elements
      • toArray

        @GwtIncompatible
        public static <T> @Nullable T[] toArray​(Iterable<? extends @Nullable T> iterable,
                                                Class<T> type)
        Copies an iterable's elements into an array.
        Parameters:
        iterable - the iterable to copy
        type - the type of the elements
        Returns:
        a newly-allocated array into which all the elements of the iterable have been copied
      • frequency

        public static int frequency​(Iterable<?> iterable,
                                    @CheckForNull
                                    Object element)
        Returns the number of elements in the specified iterable that equal the specified object. This implementation avoids a full iteration when the iterable is a Multiset or Set.

        Java 8 users: In most cases, the Stream equivalent of this method is stream.filter(element::equals).count(). If element might be null, use stream.filter(Predicate.isEqual(element)).count() instead.

        See Also:
        Collections.frequency(Collection, Object)
      • cycle

        public static <T extends @Nullable ObjectIterable<T> cycle​(Iterable<T> iterable)
        Returns an iterable whose iterators cycle indefinitely over the elements of iterable.

        That iterator supports remove() if iterable.iterator() does. After remove() is called, subsequent cycles omit the removed element, which is no longer in iterable. The iterator's hasNext() method returns true until iterable is empty.

        Warning: Typical uses of the resulting iterator may produce an infinite loop. You should use an explicit break or be certain that you will eventually remove all the elements.

        To cycle over the iterable n times, use the following: Iterables.concat(Collections.nCopies(n, iterable))

        Java 8 users: The Stream equivalent of this method is Stream.generate(() -> iterable).flatMap(Streams::stream).

      • cycle

        @SafeVarargs
        public static <T extends @Nullable ObjectIterable<T> cycle​(T... elements)
        Returns an iterable whose iterators cycle indefinitely over the provided elements.

        After remove is invoked on a generated iterator, the removed element will no longer appear in either that iterator or any other iterator created from the same source iterable. That is, this method behaves exactly as Iterables.cycle(Lists.newArrayList(elements)). The iterator's hasNext method returns true until all of the original elements have been removed.

        Warning: Typical uses of the resulting iterator may produce an infinite loop. You should use an explicit break or be certain that you will eventually remove all the elements.

        To cycle over the elements n times, use the following: Iterables.concat(Collections.nCopies(n, Arrays.asList(elements)))

        Java 8 users: If passing a single element e, the Stream equivalent of this method is Stream.generate(() -> e). Otherwise, put the elements in a collection and use Stream.generate(() -> collection).flatMap(Collection::stream).

      • concat

        public static <T extends @Nullable ObjectIterable<T> concat​(Iterable<? extends T> a,
                                                                      Iterable<? extends T> b)
        Combines two iterables into a single iterable. The returned iterable has an iterator that traverses the elements in a, followed by the elements in b. The source iterators are not polled until necessary.

        The returned iterable's iterator supports remove() when the corresponding input iterator supports it.

        Java 8 users: The Stream equivalent of this method is Stream.concat(a, b).

      • concat

        public static <T extends @Nullable ObjectIterable<T> concat​(Iterable<? extends T> a,
                                                                      Iterable<? extends T> b,
                                                                      Iterable<? extends T> c)
        Combines three iterables into a single iterable. The returned iterable has an iterator that traverses the elements in a, followed by the elements in b, followed by the elements in c. The source iterators are not polled until necessary.

        The returned iterable's iterator supports remove() when the corresponding input iterator supports it.

        Java 8 users: The Stream equivalent of this method is Streams.concat(a, b, c).

      • concat

        public static <T extends @Nullable ObjectIterable<T> concat​(Iterable<? extends T> a,
                                                                      Iterable<? extends T> b,
                                                                      Iterable<? extends T> c,
                                                                      Iterable<? extends T> d)
        Combines four iterables into a single iterable. The returned iterable has an iterator that traverses the elements in a, followed by the elements in b, followed by the elements in c, followed by the elements in d. The source iterators are not polled until necessary.

        The returned iterable's iterator supports remove() when the corresponding input iterator supports it.

        Java 8 users: The Stream equivalent of this method is Streams.concat(a, b, c, d).

      • concat

        @SafeVarargs
        public static <T extends @Nullable ObjectIterable<T> concat​(Iterable<? extends T>... inputs)
        Combines multiple iterables into a single iterable. The returned iterable has an iterator that traverses the elements of each iterable in inputs. The input iterators are not polled until necessary.

        The returned iterable's iterator supports remove() when the corresponding input iterator supports it.

        Java 8 users: The Stream equivalent of this method is Streams.concat(...).

        Throws:
        NullPointerException - if any of the provided iterables is null
      • concat

        public static <T extends @Nullable ObjectIterable<T> concat​(Iterable<? extends Iterable<? extends T>> inputs)
        Combines multiple iterables into a single iterable. The returned iterable has an iterator that traverses the elements of each iterable in inputs. The input iterators are not polled until necessary.

        The returned iterable's iterator supports remove() when the corresponding input iterator supports it. The methods of the returned iterable may throw NullPointerException if any of the input iterators is null.

        Java 8 users: The Stream equivalent of this method is streamOfStreams.flatMap(s -> s).

      • partition

        public static <T extends @Nullable ObjectIterable<List<T>> partition​(Iterable<T> iterable,
                                                                               int size)
        Divides an iterable into unmodifiable sublists of the given size (the final iterable may be smaller). For example, partitioning an iterable containing [a, b, c, d, e] with a partition size of 3 yields [[a, b, c], [d, e]] -- an outer iterable containing two inner lists of three and two elements, all in the original order.

        Iterators returned by the returned iterable do not support the Iterator.remove() method. The returned lists implement RandomAccess, whether or not the input list does.

        Note: if iterable is a List, use Lists.partition(List, int) instead.

        Parameters:
        iterable - the iterable to return a partitioned view of
        size - the desired size of each partition (the last may be smaller)
        Returns:
        an iterable of unmodifiable lists containing the elements of iterable divided into partitions
        Throws:
        IllegalArgumentException - if size is nonpositive
      • paddedPartition

        public static <T extends @Nullable ObjectIterable<List<@Nullable T>> paddedPartition​(Iterable<T> iterable,
                                                                                               int size)
        Divides an iterable into unmodifiable sublists of the given size, padding the final iterable with null values if necessary. For example, partitioning an iterable containing [a, b, c, d, e] with a partition size of 3 yields [[a, b, c], [d, e, null]] -- an outer iterable containing two inner lists of three elements each, all in the original order.

        Iterators returned by the returned iterable do not support the Iterator.remove() method.

        Parameters:
        iterable - the iterable to return a partitioned view of
        size - the desired size of each partition
        Returns:
        an iterable of unmodifiable lists containing the elements of iterable divided into partitions (the final iterable may have trailing null elements)
        Throws:
        IllegalArgumentException - if size is nonpositive
      • filter

        @GwtIncompatible
        public static <T> Iterable<T> filter​(Iterable<?> unfiltered,
                                             Class<T> desiredType)
        Returns a view of unfiltered containing all elements that are of the type desiredType. The returned iterable's iterator does not support remove().

        Stream equivalent: stream.filter(type::isInstance).map(type::cast). This does perform a little more work than necessary, so another option is to insert an unchecked cast at some later point:

         @SuppressWarnings("unchecked") // safe because of ::isInstance check
         ImmutableList<NewType> result =
             (ImmutableList) stream.filter(NewType.class::isInstance).collect(toImmutableList());
         
      • find

        @CheckForNull
        public static <T extends @Nullable Object> T find​(Iterable<? extends T> iterable,
                                                          Predicate<? super T> predicate,
                                                          @CheckForNull
                                                          T defaultValue)
        Returns the first element in iterable that satisfies the given predicate, or defaultValue if none found. Note that this can usually be handled more naturally using tryFind(iterable, predicate).or(defaultValue).

        Stream equivalent: stream.filter(predicate).findFirst().orElse(defaultValue)

        Since:
        7.0
      • tryFind

        public static <T> Optional<T> tryFind​(Iterable<T> iterable,
                                              Predicate<? super T> predicate)
        Returns an Optional containing the first element in iterable that satisfies the given predicate, if such an element exists.

        Warning: avoid using a predicate that matches null. If null is matched in iterable, a NullPointerException will be thrown.

        Stream equivalent: stream.filter(predicate).findFirst()

        Since:
        11.0
      • indexOf

        public static <T extends @Nullable Object> int indexOf​(Iterable<T> iterable,
                                                               Predicate<? super T> predicate)
        Returns the index in iterable of the first element that satisfies the provided predicate, or -1 if the Iterable has no such elements.

        More formally, returns the lowest index i such that predicate.apply(Iterables.get(iterable, i)) returns true, or -1 if there is no such index.

        Since:
        2.0
      • get

        public static <T extends @Nullable Object> T get​(Iterable<T> iterable,
                                                         int position)
        Returns the element at the specified position in an iterable.

        Stream equivalent: stream.skip(position).findFirst().get() (throws NoSuchElementException if out of bounds)

        Parameters:
        position - position of the element to return
        Returns:
        the element at the specified position in iterable
        Throws:
        IndexOutOfBoundsException - if position is negative or greater than or equal to the size of iterable
      • get

        public static <T extends @Nullable Object> T get​(Iterable<? extends T> iterable,
                                                         int position,
                                                         T defaultValue)
        Returns the element at the specified position in an iterable or a default value otherwise.

        Stream equivalent: stream.skip(position).findFirst().orElse(defaultValue) (returns the default value if the index is out of bounds)

        Parameters:
        position - position of the element to return
        defaultValue - the default value to return if position is greater than or equal to the size of the iterable
        Returns:
        the element at the specified position in iterable or defaultValue if iterable contains fewer than position + 1 elements.
        Throws:
        IndexOutOfBoundsException - if position is negative
        Since:
        4.0
      • getLast

        public static <T extends @Nullable Object> T getLast​(Iterable<? extends T> iterable,
                                                             T defaultValue)
        Returns the last element of iterable or defaultValue if the iterable is empty. If iterable is a List with RandomAccess support, then this operation is guaranteed to be O(1).

        Stream equivalent: Streams.findLast(stream).orElse(defaultValue)

        Parameters:
        defaultValue - the value to return if iterable is empty
        Returns:
        the last element of iterable or the default value
        Since:
        3.0
      • skip

        public static <T extends @Nullable ObjectIterable<T> skip​(Iterable<T> iterable,
                                                                    int numberToSkip)
        Returns a view of iterable that skips its first numberToSkip elements. If iterable contains fewer than numberToSkip elements, the returned iterable skips all of its elements.

        Modifications to the underlying Iterable before a call to iterator() are reflected in the returned iterator. That is, the iterator skips the first numberToSkip elements that exist when the Iterator is created, not when skip() is called.

        The returned iterable's iterator supports remove() if the iterator of the underlying iterable supports it. Note that it is not possible to delete the last skipped element by immediately calling remove() on that iterator, as the Iterator contract states that a call to remove() before a call to next() will throw an IllegalStateException.

        Stream equivalent: Stream.skip(long)

        Since:
        3.0
      • limit

        public static <T extends @Nullable ObjectIterable<T> limit​(Iterable<T> iterable,
                                                                     int limitSize)
        Returns a view of iterable containing its first limitSize elements. If iterable contains fewer than limitSize elements, the returned view contains all of its elements. The returned iterable's iterator supports remove() if iterable's iterator does.

        Stream equivalent: Stream.limit(long)

        Parameters:
        iterable - the iterable to limit
        limitSize - the maximum number of elements in the returned iterable
        Throws:
        IllegalArgumentException - if limitSize is negative
        Since:
        3.0
      • isEmpty

        public static boolean isEmpty​(Iterable<?> iterable)
        Determines if the given iterable contains no elements.

        There is no precise Iterator equivalent to this method, since one can only ask an iterator whether it has any elements remaining (which one does using Iterator.hasNext()).

        Stream equivalent: !stream.findAny().isPresent()

        Returns:
        true if the iterable contains no elements
      • mergeSorted

        @Beta
        public static <T extends @Nullable ObjectIterable<T> mergeSorted​(Iterable<? extends Iterable<? extends T>> iterables,
                                                                           Comparator<? super T> comparator)
        Returns an iterable over the merged contents of all given iterables. Equivalent entries will not be de-duplicated.

        Callers must ensure that the source iterables are in non-descending order as this method does not sort its input.

        For any equivalent elements across all iterables, it is undefined which element is returned first.

        Since:
        11.0