What's the Rx.NET equivalent to flatMapIterable?
问题 Today I finally stumbled upon the solution of a really trivial RX problem: Suppose you have an Observable which returns Lists of items. Like Observable<List<String>> . You often receive something like this as responses from web APIs. However chances are you want to operate on the single items, in this case the Strings. flatMapIterable to the rescue! This handy operator flattens a stream of Iterables into a stream generated from the single items of these Iterables by means of a mapping