|
Yeah I was kind of assuming this was the definitive answer, which is good because it is what I assumed. TO my mind what this says is that the "sequence-ness" comes and goes depending upon the current state of the table: x = { [1]=1, [3]=3 } -- not an array (hole) x[2]=2 -- x is now an array (1..3) x.foo = "foo" -- Still an array, non positive numeric keys are ignored in def x[1] = nil -- No longer an array (doesn't start at one) --Tim On Jun 9, 2013, at 7:04 AM, Dirk Laurie <dirk.laurie@gmail.com> wrote: Not vague, but not labouring the point either. Let's say the Manual |