expandFrom<R, O> method
Implementation
HStream<Iterable<R>> expandFrom<R, O>(HStream<O> other, Iterable<R> expander(T? input, O? other)) {
return HStream<Iterable<R>>(
expander(this.first, other.first),
after.combineLatest(other.after, (ours, O theirs) {
return expander(ours, theirs);
}));
}