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

tech.harmonysoft.oss.common.array.ArrayUtil.kt Maven / Gradle / Ivy

package tech.harmonysoft.oss.common.array

inline fun  Array.mapFirstNotNull(transform: (T) -> R?): R? {
    for (item in this) {
        transform(item)?.let { return it }
    }
    return null
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy