fix equals() - 0.15
This commit is contained in:
@@ -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)
|
Reference in New Issue
Block a user