or method

Stream<bool> or(
  1. Subject<bool> other
)

Implementation

Stream<bool> or(Subject<bool> other) => Rx.combineLatest2<bool, bool, bool>(this, other, (a, b) => a || b);