Is the only difference between Observable.of and Observable.from the arguments format? Like the Function.prototype.call and Function.prototype.apply? Observable.of(1,2,3).subscribe(() => {}) Observable.from(...
I need to create a subscription to an Observable that is immediately disposed of when it is first called. Is there something like: observable.subscribeOnce(func); My use case, I am...

