zip
Returns a provider which value will be computed by combining a provider value with another provider value using the supplied combiner function.
The resulting provider will be live, so that each time it is queried, it queries both supplied providers and applies the combiner to the results. Whenever any of the providers has no value, the new provider will also have no value and the combiner will not be called.
If the supplied providers represents a task or the output of a task, the resulting provider will carry the dependency information.
Return
a combined provider
Since
6.6
Parameters
the first provider to combine with
the second provider to combine with
the combiner of values. May return null
, in which case the provider will have no value.
the type of the first provider
the type of the second provider
the type of the result of the combiner