Given a list of cars (List cars), I can do:
List cars
Observable.just(cars); //returns an Observable that emits one List Observable.from
you can use this
flatMap { t -> Observable.fromIterable(t) }