commonMain.arrow.optics.predef.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arrow-optics-jvm Show documentation
Show all versions of arrow-optics-jvm Show documentation
Functional companion to Kotlin's Standard Library
package arrow.optics
@Suppress("ClassName")
internal object EMPTY_VALUE {
@Suppress("UNCHECKED_CAST", "NOTHING_TO_INLINE")
inline fun unbox(value: Any?): T =
if (value === this) null as T else value as T
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy