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

one.xingyi.utils.StreamHelper Maven / Gradle / Ivy

There is a newer version: 1.5.9
Show newest version
package one.xingyi.utils;

import java.util.Optional;
import java.util.stream.Stream;

public interface StreamHelper {
    static  Stream streamOf(Optional opt) {
        return opt.map(Stream::of).orElseGet(Stream::empty);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy