lua-users home
lua-l archive

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


On Tue, Mar 27, 2018 at 2:30 PM, pocomane <pocomane_7a@pocomane.com> wrote:
>
> ```
> local tab = {}
> local key = {}
> tab[key] = true
> set_strong_mode(tab)
> tab[key] = nil
> key = nil
> ```
>
> Now, how I can delete the table content?

Well, actually this is the same behaviour also for the normal lua
tables. I do not why it did seem strange to me in case of
strong-tables.

However, sorry for the noise :)