标签: collections kotlin
假设我有一个包含元素的集合。如何创建相同元素的列表?我看到了方法return ($ver == end($s = Self::Supported_Version)); 和asSequence,但没有asIterable,为什么?
return ($ver == end($s = Self::Supported_Version));
asSequence
asIterable
答案 0 :(得分:11)
您正在寻找的功能称为toList:
toList
val s: Set<Int> = setOf(1,2,3) val l: List<Int> = s.toList()