Is it possible to add more conversion units to existing apple classes of conversion ?
https://developer.apple.com/documentation/foundation/unittemperature On above link Rankine is not available. How to customize/extend this class and add Rankine ?
PS. Rankine sample formula is :
5°C × 9/5 + 491.67 = 500.67°R
PPS. planning to use it this way
let celsius = Measurement(value: 4, unit: UnitTemperature.celsius)
let kelvins = celsius.converted(to: UnitTemperature.kelvin)
print(kelvins)
TIA