Question about Standard ML (SML). Is it possible to get an element from the list by using the row and column index? Something like this:
myList = [(1,9,3),(3,5,5),(7,0,1)]
myList[1,2] // 1st row 2nd column => in this case 9
|
|
|
I don't think it's a good idea to think in terms of "rows" and "columns", but yes, you can do what you describe, by writing this:
|
|||
|
|