I have the List of SourceObjects and I need to convert it to the List of ResultObjects.
I can fetch one object to another using method of ResultObject:
c
Non blocking conversion using nested map function
val ints: Observable> = Observable.fromArray(listOf(1, 2, 3)) val strings: Observable> = ints.map { list -> list.map { it.toString() } }