Addition/substraction of a quantity with the linear base unit.
auto a = 3 * celsius; auto b = 2 * kelvin; assert(a + b == 5 * celsius); a -= b; assert(a == 1 * celsius);
See Implementation
Addition/substraction of a quantity with the linear base unit.