CombinedCollectionLiveData

fun <I, O> CombinedCollectionLiveData(calculateValue: (List<I>) -> O)

Parameters

I

The type of the input. I.e., the source LiveData values.

O

The type of the output LiveData value.

calculateValue

A method that calculates the value for this LiveData after one or more sources are updated.