TakeWhileInclusiveStreamTransformer<S> constructor
TakeWhileInclusiveStreamTransformer<S> (
- bool test(
- S
Constructs a StreamTransformer which forwards data events while test
is successful, and includes last event that caused test
to return false.
Implementation
TakeWhileInclusiveStreamTransformer(this.test);