takeWhile method
Emits values while the predicate
returns true
.
Implementation
Observable<T> takeWhile(Predicate1<T> predicate, {bool inclusive = false}) =>
TakeWhileObservable<T>(this, predicate, inclusive);
Emits values while the predicate
returns true
.
Observable<T> takeWhile(Predicate1<T> predicate, {bool inclusive = false}) =>
TakeWhileObservable<T>(this, predicate, inclusive);