commonMain.ru.casperix.math.collection.Extension.kt Maven / Gradle / Ivy
package ru.casperix.math.collection
fun List.getLooped(index: Int): T {
return this[index.mod(size)]
}
package ru.casperix.math.collection
fun List.getLooped(index: Int): T {
return this[index.mod(size)]
}