Combining 'n' Observables of the same type (RxJava)
问题 I have a code flow that generates an Iterable of Observables of the same type. I then go through them all, combining them and returning the result as an Observable. At the moment I'm using zip with a FuncN, which seems horrible and I think I've missed the point somewhere. Here's an example that uses a Map, it's obviously nonsense but you get the idea. final ImmutableList.Builder<Map<String, Object>> observables = ImmutableList.builder(); for (String key: keys) { if (someTest(key)) {