Performs an assingment operation on a value in the internal associative array.
Assignment operation as a string.
Value to assign.
Key.
RehashingAA!(int[int]) aa; aa[1] = 42; aa[1] += 1; assert(aa[1] == 43); aa[1] *= 2; assert(aa[1] == 86);
Performs an assingment operation on a value in the internal associative array.