for (item in this.pList.indices) {
if (this.pList[item] != fList[item]) {
return false
}
}
return true
pList и fList - это массивы или списки?
https://kotlinlang.org/docs/reference/collection-filtering.html
pList.size <= fList.size && pList.asSequence().zip(fList.asSequence()) { p, f -> p == f }.all { it }
Обсуждают сегодня