When importing numbers from a csv file, I need to convert them to floats with unit.
Currently I do this with an inline function:
data |> List.map
Is there any reason why you have to map twice? What's wrong with this:
data |> List.map (fun x -> (float x) * 1.0)