fastForEachIndexedReversed

inline fun ByteArray.fastForEachIndexedReversed(action: (index: Int, Byte) -> Unit)
inline fun IntArray.fastForEachIndexedReversed(action: (index: Int, Int) -> Unit)
inline fun FloatArray.fastForEachIndexedReversed(action: (index: Int, Float) -> Unit)
inline fun DoubleArray.fastForEachIndexedReversed(action: (index: Int, Double) -> Unit)
inline fun CharArray.fastForEachIndexedReversed(action: (index: Int, Char) -> Unit)
inline fun <T> Array<T>.fastForEachIndexedReversed(action: (index: Int, T) -> Unit)
inline fun <T> List<T>.fastForEachIndexedReversed(action: (index: Int, T) -> Unit)