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 time is the second. All units of time 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 second -> minutes = ~
convert(10; sc; mn) = 0.1666667
10 second -> blinks = 11.574074
convert(10; second; blink) = 11.574074
10 second -> days = 0.0001157
convert(10; s; day) = 0.0001157
10 hours -> second = 36,000
convert(10; hr; sc) = 36,000
10 weeks -> second = 6,048,000
convert(10; wk; second) = 6,048,000
10 svedbergs -> second = 10e-13
convert(10; svedberg; second) = 10e-13
10 years -> days = 3,652.425
convert(10; yr; dy) = 3,652.425
10 decades -> hours = 876,582
convert(10; decade; hr) = 876,582
10 shakes -> svedbergs = 1,000,000
convert(10; shake; svedberg) = 1,000,000
10 milleniums -> yr = 10,000
convert(10; millenium; year) = 10,000
10 weeks -> mn = 100,800
convert(10; week; minutes) = 100,800
10 hr -> beat = 416.66667
convert(10; hours; beats) = 416.66667