Create `combineWith` operator
fcavedon opened this issue · 0 comments
fcavedon commented
Create a combineWith
operator as follows:
- Should accept 2 source
LiveData
s - Should accept a mapper function, such that
f(X?, Y?) -> Z?
, whereX
andY
are the types emitted by the sources - Should return a
LiveData<Z?>