binarySearchRight

fun IntArray.binarySearchRight(v: Int, fromIndex: Int = 0, toIndex: Int = size): Int
fun FloatArray.binarySearchRight(v: Float, fromIndex: Int = 0, toIndex: Int = size): Int
fun DoubleArray.binarySearchRight(v: Double, fromIndex: Int = 0, toIndex: Int = size): Int
fun IntArrayList.binarySearchRight(v: Int, fromIndex: Int = 0, toIndex: Int = size): Int
fun FloatArrayList.binarySearchRight(v: Float, fromIndex: Int = 0, toIndex: Int = size): Int
fun DoubleArrayList.binarySearchRight(v: Double, fromIndex: Int = 0, toIndex: Int = size): Int