Companion

Functions

Link copied to clipboard
fun <P : Provider<T>, T : Any> lazy(provider: P): Lazy<T>

Returns a Lazy that caches the value from the given provider.

Link copied to clipboard
fun <P : Provider<T>, T : Any> provider(delegate: P): Provider<T>

Returns a Provider that caches the value from the given delegate provider.