Given a class definition `class MyClass(val aList:...
# reflect
v
Given a class definition
class MyClass(val aList: List<String>)
the KParameter.type is
List
. Is it ever possible for
List
to have more than one argument?
d
It is possible for a subclass of
List
to have more type-arguments, but that does not change anything about
List
itself. So, no.