Guys, how do I convert a Single<List<List&lt...
# rx
t
Guys, how do I convert a Single<List<List<Int>>> to a Single<List<Int>> (The emission [[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]] should become [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) ?