zip

inline fun <T, R, V> Provider<T>.zip(other: Provider<R>, crossinline transform: (T, R) -> V): Provider<V>(source)

Lazily zips this Provider's value with another Provider of type R and returns a Provider of type V.