Esempio n. 1
0
 /* This method returns the hash code of this value. */
 public final int hashCode() {
   long fp = this.fingerPrint(FP64.New());
   int high = (int) (fp >> 32);
   int low = (int) fp;
   return high ^ low;
 }