标签: kotlin
我应该如何在Kotlin中管理嵌套的迭代器? 我使用了过渡变量,但是我敢肯定应该为此提供一些更美观的解决方案。
arr.forEach { val forEachIt = it //I need to get rid of this extra value val product = productList.firstOrNull { forEachIt.productId == it.productID } }