/**
  * Compares this map with another map for equality of their stored entries.
  *
  * @param other an <code>Object</code> value
  * @return a <code>boolean</code> value
  */
 @Override // GemStoneAddition
 public boolean equals(Object other) {
   if (!(other instanceof TDoubleFloatHashMap)) {
     return false;
   }
   TDoubleFloatHashMap that = (TDoubleFloatHashMap) other;
   if (that.size() != this.size()) {
     return false;
   }
   return forEachEntry(new EqProcedure(that));
 }