However … kotlin.collections.List is treated speci...
# java-to-kotlin-refactoring
n
However … kotlin.collections.List is treated specially by the compiler on the JVM platform, and mapped to the java.util.List type. So most of the subclasses you will see in the hierarchy panel will be Java classes that implement java.util.List, such as java.util.ArrayList.
k
Thank you