int[2] opBinary(string op)(int[2] rhs) if (op == "=") {
_pair = rhs;
return rhs;
}
Oops, that should be IntPair opAssign(int[2] rhs)
int[2] opBinary(string op)(int[2] rhs) if (op == "=") {
_pair = rhs;
return rhs;
}
Oops, that should be IntPair opAssign(int[2] rhs)