The JavaDocs of Flowable.reduce(BiFunction) incorrectly mentions that an empty source results in a NoSuchElementException. It returns a Maybe thus an empty source will result in an empty Maybe. The Observable.reduce(BiFunction) counterpart has the correct text.
The "If the source is empty, a NoSuchElementException is signaled." should be removed.
The JavaDocs of
Flowable.reduce(BiFunction)incorrectly mentions that an empty source results in aNoSuchElementException. It returns aMaybethus an empty source will result in an emptyMaybe. TheObservable.reduce(BiFunction)counterpart has the correct text.The "If the source is empty, a NoSuchElementException is signaled." should be removed.