org.codehaus.httpcache4j.util.Streamable Maven / Gradle / Ivy
The newest version!
package org.codehaus.httpcache4j.util;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;
/**
* Created by maedhros on 29/06/15.
*/
public interface Streamable extends Iterable {
default Stream stream() {
return StreamSupport.stream(spliterator(), false);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy