join<T> method

StreamTransformer<R, T> join<T>(
  1. StreamTransformer<S, T> other
)

Implementation

StreamTransformer<R, T> join<T>(StreamTransformer<S, T> other) {
  return StreamTransformer<R, T>.fromBind((Stream<R> stream) {
    return other.bind(bind(stream));
  });
}