Is it possible to have generics of generics ? Some...
# announcements
j
Is it possible to have generics of generics ? Something like...
abstract class Foo<T,R,K>(val kt K<T>,  val kr K<R>)
... My use case is... I would like to have
Observable<T>
and
Observable<K>
to some instance and
LiveData<T>
and
LiveData<K>
in other instance... any suggestions besides not having the abstract class?