Allow a sequence as a subscript
- Posted by lpuster Sep 22, 2010
- 1076 views
Wishlist item:
When a function returns a location in a multi-dimensioned array, it must return a sequence. It is very messy to use the sequence to access the array.
sequence array, subscript array = {{1,2,3},{4,5,6},{7,8,9}} subscript = {2,3} array[subscript[1]][subscript[2]] -- Current method array[subscript] -- Wishlist alternative method