(byte[] array, byte value)
| 161 | /// @return the non-negative index of the element, or a negative index which |
| 162 | /// is `-index - 1` where the element would be inserted. |
| 163 | public static int binarySearch(byte[] array, byte value) { |
| 164 | return binarySearch(array, 0, array.length, value); |
| 165 | } |
| 166 | |
| 167 | /// Performs a binary search for the specified element in the specified |
| 168 | /// sorted array. |
nothing calls this directly
no test coverage detected