fix equals() - 0.15

This commit is contained in:
alexander.nutz
2024-06-06 10:52:30 +02:00
parent b212ca8902
commit a53d424c30
6 changed files with 83 additions and 4 deletions

View File

@@ -24,4 +24,7 @@ fun <T> MutableList<T>.removeLastInto(count: Int, dest: MutableList<T> = mutable
dest.add(removeLast())
}
return dest
}
}
fun <T> MutableList<T>.addFront(value: T) =
add(0, value)