jvmMain.com.bkahlert.kommons.Optionals.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kommons-core-jvm Show documentation
Show all versions of kommons-core-jvm Show documentation
Kommons Core is a Kotlin Multiplatform Library that offers shared features for all Kommons modules.
package com.bkahlert.kommons
import java.util.Optional
/** If a value [Optional.isPresent], returns the value. Otherwise, returns `null`. */
public inline fun Optional?.orNull(): T? = this?.orElse(null)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy