abbreviated Type
Abbreviation of this type. Note that all types are expanded for metadata produced by the Kotlin compiler. For example:
typealias A = MutableList
fun foo(a: A) {}
Content copied to clipboard
The type of the foo
's parameter in the metadata is actually MutableList<Any>
, and its abbreviation is A<Any>
.