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

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

There is a newer version: 4.10.0
Show newest version
package org.vertexium.util;

import java.util.Iterator;

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy