followedBy method

ValueStream<Iterable<X>> followedBy(
  1. ValueStream<Iterable<X>> other
)

Implementation

ValueStream<Iterable<X>> followedBy(ValueStream<Iterable<X>> other) {
  final first = [
    ...this.resolve([])!,
    ...other.resolve([])!,
  ];
  return ValueStream<Iterable<X>>.of(first, this.after.followedBy(other.after));
}