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