Collections#binarySearch(List, Object, Comparator) Searches sortedList for key using the binary search algorithm. The list must be sorted using this ordering. @param sortedList the list to be searched @param key the key to be searched for
(List<? extends T> sortedList, @Nullable T key)
| 970 | |
| 971 | |
| 972 | public int binarySearch(List<? extends T> sortedList, @Nullable T key) { |
| 973 | return Collections.binarySearch(sortedList, key, this); |
| 974 | } |
| 975 | |
| 976 | /** |
| 977 | * Exception thrown by a {@link Ordering#explicit(List)} or {@link |
no outgoing calls
no test coverage detected