How to merge two observables with early completion
问题 The behavior of the built-in Merge operator is to complete when both sources are completed. I am searching for a variant of this operator that produces an observable that completes when any of the two source observables completes. For example if the first observable complete successfully and later the second observable complete with an exception, I want this exception to be ignored. I came up with an implementation that concatenates a special sentinel exception to both enumerables, and then