f# one list to another?
- by mamu
I have a list of tuples with three values in tuples
I want to create new List of strings out of previous list with one value out of tuples.
List [(string * string * int) ]
List[ for i in columns -> i.getfirstvalueintuple]
How can i do that? very basic question but i can't figure it out.
Also is there any other way of building another kind of list or seq out of existing list?