strongGetMod

@JvmName(name = "strongListGetMod")
fun <T> Provider<List<T>>.strongGetMod(index: Int): Provider<T>
@JvmName(name = "strongListGetMod")
fun <T> Provider<List<T>>.strongGetMod(index: Provider<Int>): Provider<T>

Creates and returns a new Provider that maps to the element at index modulo the list size.


@JvmName(name = "strongArrayGetMod")
fun <T> Provider<Array<T>>.strongGetMod(index: Int): Provider<T>
@JvmName(name = "strongArrayGetMod")
fun <T> Provider<Array<T>>.strongGetMod(index: Provider<Int>): Provider<T>

Creates and returns a new Provider that maps to the element at index modulo the array size.