I\'ve got some data manipulation code which spits out csv at the end.
I started upgrading it to add units of measure everywhere, but I now have a problem with my csv
If I got your Problem right, casting it to "pure" float removes the Unit. For Example:
[<Measure>] type m [<Measure>] type km let removeUnit (x:float<_>) = float x let foo = removeUnit 2.6<m> let foo2 = removeUnit 2.1<km>
val removeUnit : float<'u> -> float