Package kotlin. properties
Standard implementations of delegates for /docs/reference/delegated-properties.html and helper functions for implementing custom delegates.
Types
Observable Property
Link copied to clipboard
abstract class ObservableProperty<V>(initialValue: V) : ReadWriteProperty<Any?, V>
Content copied to clipboard
Implements the core logic of a property delegate for a read/write property that calls callback functions when changed.
Property Delegate Provider
Link copied to clipboard
Base interface that can be used for implementing property delegate providers.
Since Kotlin
1.4
Read Only Property
Link copied to clipboard
Base interface that can be used for implementing property delegates of read-only properties.
Read Write Property
Link copied to clipboard
Base interface that can be used for implementing property delegates of read-write properties.