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

name.remal.kotlin.collections.List.kt Maven / Gradle / Ivy

package name.remal

import java.util.Collections.synchronizedList

fun  List.asSynchronized(): List = synchronizedList(this)

fun  List.subList(fromIndex: Int): List = this.subList(fromIndex, this.size)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy