All Downloads are FREE. Search and download functionalities are using the official Maven repository.

core.javautilCollectionsCode.kt Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package java.util.Collections

import java.lang.*
import java.util.*

public fun  reverse(list: MutableList): Unit {
    val size = list.size()
    for (i in 0..(size / 2) - 1) {
        val i2 = size - i - 1
        val tmp = list[i]
        list[i] = list[i2]
        list[i2] = tmp
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy