You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It has been two times I've been missing a takeUntil(filter) operator on observables. The last time was in cgeo while implementing a low-power mode: I want to receive location updates through an observable and stop as soon as a location arrives with a precision of 20m or less, but I want this location to be returned. Using takeWhile(!filter) would drop the matching item.
Of course, this can be worked around, but I was surprised not to get this operator which is the dual of takeWhile. Would you consider a contribution adding it?