ReactiveX/RxGo

TakeUntil behaves differently to ReactiveX documentation

riichinomics opened this issue · 0 comments

Describe the bug
According to the ReactiveX documentation mentioned on the original ticket TakeUntil should accept a second observable.

Currently the RxGo TakeUntil function is almost identical to TakeWhile, with the result of the predicate inverted.

Expected behavior
TakeUntil accepts a second Observable, emitting items from the Observable receiver until the second Observable emits any item or terminates.