Kayvan
05/17/2018, 9:15 PMjava
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?
kotlin
Transformation<Transformation...>()
Czar
05/17/2018, 9:59 PM