|
Regarding ipairs() docs (6.1 Basic Functions). The docs state: “… will iterate over the pairs (1,t[1]), (2,t[2]), ..., up to the first integer key absent from the table.” Would this be better as: “… will iterate over the pairs (1,t[1]), (2,t[2]), ..., up to the first integer key which has a value of nil.” ? Which seems clearer to me both for the raw and __index() metamethod cases. —Tim |