Delegate.maskSmart

This commit is contained in:
DBotThePony 2024-02-25 01:45:02 +07:00
parent cde5db7a78
commit 84d17349b7
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 15 additions and 1 deletions

View File

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

View File

@ -55,6 +55,20 @@ interface Delegate<V> : Supplier<V>, Consumer<V> {
@Deprecated("Warning: Using read-only property as delegate")
constructor(prop: KProperty0<V>) : this(prop::get, Consumer { })
}
companion object {
/**
* Returns smart box if [getter] or [setter] is not passthrough
*/
@JvmStatic
fun <V> maskSmart(value: V, getter: DelegateGetter<V>, setter: DelegateSetter<V>): Delegate<V> {
if (getter === DelegateGetter.passthrough<V>() && setter === DelegateSetter.passthrough<V>()) {
return Box(value)
} else {
return SmartBox(value, getter, setter)
}
}
}
}
operator fun <V> Supplier<V>.getValue(ref: Any?, property: KProperty<*>): V {