Do not emit any items from an Observable but mirror its termination notification.
observable := rxgo.Just(1, 2, errors.New("foo"))().
IgnoreElements()
Output:
foo
Do not emit any items from an Observable but mirror its termination notification.
observable := rxgo.Just(1, 2, errors.New("foo"))().
IgnoreElements()
Output:
foo