kotlin.collections.foldRight
foldRight
inline fun <T, R> List<T>.foldRight( initial: R, operation: (T, acc: R) -> R ): R
inline fun <T, R> Array<out T>.foldRight( initial: R, operation: (T, acc: R) -> R ): R
inline fun <R> ByteArray.foldRight( initial: R, operation: (Byte, acc: R) -> R ): R
inline fun <R> ShortArray.foldRight( initial: R, operation: (Short, acc: R) -> R ): R
inline fun <R> IntArray.foldRight( initial: R,