When I try and overload opBinary on a simple Vector struct, I get a strange and meaningless error:
struct Vector(T)
{
T x, y;
Vector opBinary(string op)(Vector!float vector)
{
return Vector (
mixin("x" ~ op ~ "vector.x"),
mixin("y" ~ op ~ "vector.y")
);
}
Vector opBinary(string op)(Vector!double vector)
{
return Vector (
mixin("x" ~ op ~ "vector.x"),
mixin("y" ~ op ~ "vector.y")
);
}
}
void main()
{
auto dVec = Vector!double();
auto fVec = Vector!float();
auto aVec = dVec + fVec; // Adding this line causes error (see below)
}
The error I get is simply: "opBinary(string op)". No line numbers, nothing. Which obviously doesn't give me a whole lot to go on. Is there another way to handle this situation? Is this a known bug?
I'm using DMD 2.057 on Windows 7. Haven't tested on Linux yet.
[EDIT] cleaned the code up a bit for readability.
Vector!T, you can writeVector. – jA_cOp Dec 29 '11 at 5:48Vector!doublewith an object of typeVector!floatis beyond me. – Arlen Dec 31 '11 at 10:07