RxSwiftExt icon indicating copy to clipboard operation
RxSwiftExt copied to clipboard

Support mapToMany for Single

Open asam139 opened this issue 5 years ago • 0 comments

Name and description

Support mapMany for Single

Motivation for inclusion

It is very annoying to convert to Observable to be able to use mapMany and then to convert it to single.

Example of use

mySingle.mapMany(...)

In place of

mySingle.asObservable()
               .mapMany(...)
               .asSingle()

asam139 avatar Nov 24 '20 15:11 asam139