In the method:public static int
java.util.Arrays.binarySearch(Object[] a,Object key,Comparator c)does
the Comparator call
java.util.Comparator.compare(a[i],key) or
java.util.Comparator.compare(key,a[i])?I can't seem to find any
information telling the
order of the call.