Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RxGroovy に次のコードがあります。
Observable .just(1, 2, 3, 4, 5) .groupBy({num -> num % 2 == 0}) ...
の型numはのObservable<Integer>代わりに ですInteger。その理由は、デフォルト.groupByで存在するためだと思います。RxGroovy で引き続きリアクティブ メソッドを使用するにはどうすればよいですか?Groovy .groupBy
num
Observable<Integer>
Integer
.groupBy
Groovy