followedBy method
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));
}