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

jvmMain.com.bkahlert.kommons.Optionals.kt Maven / Gradle / Ivy

Go to download

Kommons Core is a Kotlin Multiplatform Library that offers shared features for all Kommons modules.

There is a newer version: 2.8.0
Show newest version
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