name.remal.java.util.stream.IntStream.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Java & Kotlin tools: common
package name.remal
import java.util.*
import java.util.stream.IntStream
fun ByteArray.stream(): IntStream = Arrays.stream(this.toIntArray())
fun ShortArray.stream(): IntStream = Arrays.stream(this.toIntArray())
fun IntArray.stream(): IntStream = Arrays.stream(this)
fun IntStream.averageOrNull(): Double? = average().let { if (it.isPresent) it.asDouble else null }