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

org.guppy4j.Iterables Maven / Gradle / Ivy

package org.guppy4j;

import java.util.stream.Stream;
import java.util.stream.StreamSupport;

/**
 * Static helper methods for Iterable objects
 */
public final class Iterables {

    public static  Stream stream(Iterable iterable) {
        return StreamSupport.stream(iterable.spliterator(), false);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy