Don wrote:The other thing that's desperately missing from D is multi-dimensional indexing.What are the limitations of multiple-argument []? Andrei
Don might be refering to the $ operator, but that more applies to slicing.Personally, I find the lack of multi-dimentional slicing more of a lack: i.e.
matrix[[1,2]..[matrix.lengths[0]-3,5]] vs matrix[1..$-3, 2..5]