Implements index assign operations by mixin strings.
Operation, here an index assign operator.
Value.
Key.
MutexedAA!(int[int]) aa; aa.setup(); // important! aa[1] = 42; aa[1] += 1; assert(aa[1] == 43); aa[1] *= 2; assert(aa[1] == 86);
Implements index assign operations by mixin strings.