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

fuookami.ospf.kotlin.utils.functional.Nullable.kt Maven / Gradle / Ivy

There is a newer version: 1.0.29
Show newest version
package fuookami.ospf.kotlin.utils.functional

fun  T?.ifNull(default: T): T = this ?: default
fun  T?.ifNull(default: () -> T): T = this ?: default()

fun  Collection?.ifNullOrEmpty(default: Collection): Collection = this?.ifEmpty { default } ?: default
fun  Collection?.ifNullOrEmpty(default: () -> Collection): Collection = this?.ifEmpty { default() } ?: default()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy