
tech.harmonysoft.oss.common.collection.CollectionUtil.kt Maven / Gradle / Ivy
package tech.harmonysoft.oss.common.collection
inline fun Iterable.mapFirstNotNull(transform: (T) -> R?): R? {
for (item in this) {
val result = transform(item)
if (result != null) {
return result
}
}
return null
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy