I'm a newbie to F# and currently wondering how to convert a byte sequence of sequences to a float sequence of sequences
seq< seq< byte> -> seq< seq< float>
So I have this following byte sequence
let colourList = seq[ seq[10uy;20uy;30uy]; seq[50uy;60uy;70uy] ]
I have tried using
colourList |> Seq.map System.Double.Parse
to create a new sequence with float elements but it does not work. Can someone help me please? I've been stuck on this one for days.