Is there a reason that there is `Observable.merge(Iterable<Observable>)` but not `Observable.concat(Iterable<Observable>)`? If I understand correctly it could work similarly as `concat(from(iterable));`
Is there a reason that there is
Observable.merge(Iterable<Observable>)but notObservable.concat(Iterable<Observable>)?If I understand correctly it could work similarly as
concat(from(iterable));