Не удается переопределить opCmp и opEquals структуры
В качестве альтернативы можно объявить одну шаблонную функцию opEquals с параметром auto ref:
bool opEquals()(auto ref S s) { ... }
Если структуры объявляют функцию-член opCmp, она должна иметь следующий вид:
int opCmp(ref const S s) const { ... }
Почему же следующий код не компилируется?
import std.stdio;
import std.conv;
struct Fgs {
int v;
this(int iv) {
v = iv;
}
bool opEquals()(auto ref Fgs another) {
return v == another.v;
}
int opCmp(ref const Fgs another) const {
if (this == another) {
return 0;
} else if (this.v < another.v) {
return -1;
} else {
return 1;
}
}
}
unittest {
auto a = Fgs(42);
auto b = Fgs(10);
assert(a != b);
assert(a > b);
}
Вот вывод DMD:
/home/mfag/lighthouse/testss.d(15): Error: template testss.Fgs.opEquals does not match any function template declaration
/home/mfag/lighthouse/testss.d(10): Error: template testss.Fgs.opEquals() cannot deduce template function from argument types !()(const(Fgs))