如何从 Kotlin 模块中正确读取 Swift 中的可变数组中的数据? Kotlin 共享模块:
data class Tape(private val capacity: Int) {
val reel: MutableList<Char>
...
}
迅速:
tape.reel.compactMap({ $0 as? Character } // leads to nothing in the array
如何从 Kotlin 模块中正确读取 Swift 中的可变数组中的数据? Kotlin 共享模块:
data class Tape(private val capacity: Int) {
val reel: MutableList<Char>
...
}
迅速:
tape.reel.compactMap({ $0 as? Character } // leads to nothing in the array