ProviderDslProperty
A DSL property backed by a Provider. Can be set to a static value or bound to a reactive Provider using the by infix function.
// static value
stringValue by "abc"
// reactive provider
stringValue by myStringProviderContent copied to clipboard
This property is also a Provider, meaning that the configured provider can be read back:
val mapped = stringValue.map { it.length }
intValue by mappedContent copied to clipboard
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Sets this List property to a single value.
Sets this List property to a provider of a single value.
Sets this Set property to a single value.
Sets this Set property to a provider of a single value.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun <R> strongImmediateFlatMapMutable(transform: (T) -> MutableProvider<R>): MutableProvider<R>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard