Conversions can be done either with the "->" conversion operator or with the equivalent "convert" function. The function has three parameters: a quantity, a unit to convert from and a unit to convert to. Likewise the conversion operator uses three values: the quantity and unit to convert from are placed on the left side of the operator while the unit to convert to goes to the right side.
The basic unit of mass is the kilogram (not the gram). All units of mass are expressed in terms of this base unit and so measurements can be converted from any one of the following units to any other.
10 kilograms -> pounds = 22.046226
convert(10; kg; lb) = 22.046226
10 kilograms -> ounces = 352.73962
convert(10; kg; oz) = 352.73962
10 kilograms -> grams = 10,000
convert(10; kilogram; gram) = 10,000
10 kg -> tonnes = 0.01
convert(10; kilogram; tonne) = 0.01
10 grams -> carats = 50
convert(10; gram; carat) = 50
10 grams -> grains = 154.32358
convert(10; gram; grain) = 154.32358
10 carat -> troyOunces = 0.0643015
convert(10; carat; troyOunce) = 0.0643015
10 troyPound -> kg = 3.7324172
convert(10; troyPounds; kilograms) = 3.7324172
10 tonnes -> pounds = 22,046.226
convert(10; tonne; lbs) = 22,046.226
10 oz -> lb = 0.625
convert(10; ozs; pounds) = 0.625
10 lbs -> oz = 160
convert(10; pound; ounce) = 160
10 ounces -> grams = 283.49523
convert(10; oz; gram) = 283.49523
10 shortTons -> longTons = 8.9285714
convert(10; tonUS; tonUK) = 8.9285714
10 longTon -> shortTons = 11.2
convert(10; ukTon; usTon) = 11.2
10 longTon -> Tonnes = 10.160469
convert(10; tonUK; tonne) = 10.160469
10 tonnes -> shortTons = 11.023113
convert(10; tonne; tonUS) = 11.023113