Emit a specified Iterable before beginning to emit the items from the source Observable.
observable := rxgo.Just(3, 4)().StartWith(
rxgo.Just(1, 2)())
Output:
1
2
3
4
Emit a specified Iterable before beginning to emit the items from the source Observable.
observable := rxgo.Just(3, 4)().StartWith(
rxgo.Just(1, 2)())
Output:
1
2
3
4