Access

interface Access<This : Any, Value : Any>(source)

Functions

Link copied to clipboard
abstract fun get(o: This): Value

Invokes the getter on the provided object.

Link copied to clipboard
abstract fun has(o: This): Boolean

Determines whether an object has a property with the same name as the decorated element.

Link copied to clipboard
abstract fun set(o: This, value: Value)

Invokes the setter on the provided object.