Question, I have a library class in this form: ```...
# announcements
k
Question, I have a library class in this form:
Copy code
java
public class Transformation<T extends Transformation>
and I would like to use it in my kotlin project but the problem is that java lets me not provide a type parameter but kotlin forces me to do so. How can I provide a type parameter to this class without having it recurse?
Copy code
kotlin
Transformation<Transformation...>()
c