I want to evaluate two observable<boolean> and I would like to save the flow in another observable<boolean>.
I tried combineLatest(obs1$, obs2$); but it generates an observable<[boolean, boolean]>.
Is there a better function than combineLatest to evaluate both observables and returns another observable<boolean>?