forEachReversedIndexed

inline fun forEachReversedIndexed(block: (index: Int, element: Float) -> Unit)(source)

Calls block for each element in the FloatList along with its index, in reverse order.

Parameters

block

will be executed for every element in the list, accepting the index and the element at that index.