Add combineLatest overload for Collection#3660
Add combineLatest overload for Collection#3660JakeWharton wants to merge 1 commit intoReactiveX:1.xfrom JakeWharton:jw/collection
Conversation
|
Can we revisit this once #3507 is merged? |
|
Yep. That allows exposing |
|
👍 Don't you want to add tests for your new |
|
The tests were modified to use it. On Mon, Feb 1, 2016 at 10:27 AM Artem Zinnatullin notifications@github.com
|
|
Tests for |
|
They use that API. |
2.x already uses
Iterable, but that's a very drastic change compared to justCollection.Motivation here is that I'm using set bindings to create observables in a dependency injector and I want to skip the current
new ArrayList<>(sources)that I have to do on the set.