KOptional.orNull

This commit is contained in:
DBotThePony 2024-03-20 16:08:28 +07:00
parent 3384ffebd0
commit 7a344ceece
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 9 additions and 1 deletions

View File

@ -4,7 +4,7 @@ kotlin.code.style=official
specifyKotlinAsDependency=false
projectGroup=ru.dbotthepony.kommons
projectVersion=2.9.24
projectVersion=2.9.25
guavaDepVersion=33.0.0
gsonDepVersion=2.8.9

View File

@ -94,6 +94,14 @@ class KOptional<T> private constructor(private val _value: T, val isPresent: Boo
}
}
fun orNull(): T? {
if (isPresent) {
return value
} else {
return null
}
}
fun valueEquals(other: Any?): Boolean {
if (isPresent) {
return _value == other