Static Data
class StaticData<T : Any>(val type: KType, value: T, val meta: Meta = Meta.EMPTY) : StaticGoal<T> , Data<T>
Functions
Link copied to clipboard
Link copied to clipboard
inline fun <T1 : Any, T2 : Any, R : Any> Data<T1>.combine(other: Data<T2>, coroutineContext: CoroutineContext = EmptyCoroutineContext, meta: Meta = this.meta, crossinline block: suspend (left: T1, right: T2) -> R): Data<R>
Combine this data with the other data using block. See Data::map for other details
Link copied to clipboard