PropertySetter

fun interface PropertySetter<in T, in V>

Functional interface for setting property values on objects. Provides a unified way to modify properties using a consistent API.

Parameters

T

the type of the target object

V

the type of the property value

Inheritors

Functions

Link copied to clipboard
abstract operator fun set(target: T, value: V)

Sets the property value on the specified target object.