Given a list of cars (List<Car> cars), I can do:
Observable.just(cars); //returns an Observable that emits one List<Car>
Observable.from(cars); //returns an Observable that emits a squence of Car
Is there a way I can go from an Observable of a List<Car> to a sequence of Observable<Car>?
Something like a from without parameters
Obserable.just(cars).from()