Is it possible to create a type (let's say degrees) and define for it specific operators? Such as: =, +, *, -, /, +=, *=, -=, /=.
I'm wondering this because I need to use degrees for one of my application and I don't want to use an object because using degrees a; a.value = 120; a.value = b.value + a.value; is redundant over a simple degrees a = 120; a = b+a;.
Now why don't I just use:
typedef float degrees;
? Because I need of one more thing: when we do:
degrees a;
a = 120;
a += 300;
a should be equal to 60 (420-360) because I don't really need a = 6150 when I can have a = 30 with the same effect. So I'd overload those operators to make a real type conversion from big numbers to a number between 0 and 360.
I'd like to know if there's a way to do this without Boost or any additional library. If so, how?
Important: I'm not asking if there's a way to overload operators with typedef. I know it's not possible within the standard library.
