I would like to use the Vector<'T> data structure mentioned here as an answer
stack overflow
but I cannot get the syntax correctly. For instance:
open FSharpx.Collections let tuple1= (1,2.0,"f") let tuple2= (2,3.0,"f") let myLstOfTuples = [tuple1;tuple2] let myVector = ?? <- how do I do this?
How to create a vector of type Vector<int * float * string> and fill it with data?
source share