lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]




On Fri, Jun 8, 2018 at 12:19 PM, Sean Conner <sean@conman.org> wrote:


  Which element was removed?  Where will you find '8'?  Is this an issue?

  -spc


That's the other implication of an assignable #t, which tends me toward thinking it isn't worth the cost.

t = {1,2,3,4, [10] = 10}; #t = 10

table.remove(t,3) -- does this change #t?