Re: Strong tables in Lua 5.4
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Strong tables in Lua 5.4
 
- From: pocomane <pocomane_7a@...>
 
- Date: 2018年3月27日 15:05:52 +0200
 
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 :)
- References:
- Strong tables in Lua 5.4, Dirk Laurie
 
- Re: Strong tables in Lua 5.4, Philipp Janda
 
- Re: Strong tables in Lua 5.4, Hisham
 
- Re: Strong tables in Lua 5.4, Roberto Ierusalimschy
 
- Re: Strong tables in Lua 5.4, Egor Skriptunoff
 
- Re: Strong tables in Lua 5.4, Roberto Ierusalimschy
 
- Re: Strong tables in Lua 5.4, Hisham
 
- Re: Strong tables in Lua 5.4, Italo Maia
 
- Re: Strong tables in Lua 5.4, Eric Man
 
- Re: Strong tables in Lua 5.4, Dirk Laurie
 
- Re: Strong tables in Lua 5.4, Eric Man
 
- Re: Strong tables in Lua 5.4, pocomane