Other RehashingAA whose internal associative array to compare with the one of this instance.
true if the internal associative arrays are equal; false if not.
RehashingAA!(string[int]) aa1; aa1[1] = "one"; RehashingAA!(string[int]) aa2; aa2[1] = "one"; assert(aa1 == aa2); aa2[2] = "two"; assert(aa1 != aa2); aa1[2] = "two"; assert(aa1 == aa2);
Implements opEquals for this type, comparing the internal associative array with that of another RehashingAA.