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

nl.vpro.util.StreamUtils Maven / Gradle / Ivy

There is a newer version: 5.3.1
Show newest version
package nl.vpro.util;

import java.util.Arrays;
import java.util.stream.Stream;

public class StreamUtils {

    public static  Stream nullToEmpty(C[] array) {
        return array == null ? Stream.empty() : Arrays.stream(array);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy