Please add flatMapFirst (exhaustMap) operator, like this exhaustMap-rxjs, flatMapFirst in RxSwift.
Thanks!

No. This is an uncommon operation to perform that can be emulated with existing operators:
source.onBackpressureDrop().flatMap(mapper, 1)
or
flatMapDrop for Observable.
Thanks @akarnokd
@akarnokd I could not agree less. ExhaustMap should be made standard. Coming from RxJs this is very inconvenient to use additional libraries for functionality that seems so common.