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

org.securegraph.util.ArrayIterable Maven / Gradle / Ivy

The newest version!
package org.securegraph.util;

import java.util.Iterator;

public class ArrayIterable implements Iterable {
    private final T[] items;

    public ArrayIterable(T[] items) {
        this.items = items;
    }

    @Override
    public Iterator iterator() {
        return new ArrayIterator(this.items);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy