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:
[] type m [] type km let removeUnit (x:float<_>) = float x let foo = removeUnit 2.6 let foo2 = removeUnit 2.1
val removeUnit : float<'u> -> float