예제 #1
0
 /**
  * Returns a deep copy of the receiver.
  *
  * @return a deep copy of the receiver.
  */
 public Object clone() {
   OpenIntDoubleHashMap copy = (OpenIntDoubleHashMap) super.clone();
   copy.table = (int[]) copy.table.clone();
   copy.values = (double[]) copy.values.clone();
   copy.state = (byte[]) copy.state.clone();
   return copy;
 }