Multiplication/division of an unit and a value type, constructing a Quantity instance.
auto a = 2 * metre; auto b = 2 / metre; auto c = metre * 2; auto d = metre / 2;
See Implementation
Multiplication/division of an unit and a value type, constructing a Quantity instance.