Situation is that I have this table containing items, and I am in need of deleting a specific one of them out.
However, problem is that I don't have access to the table at that point, but only to the item.
As in situation is:
Code: Select all
Function MyVar(Item)
Delete Item from Mytable?
EndFunction
mytable = {}
ItemVar = Mytable[n]
somefunc(ItemVar)
edit:
Comes to my mind that ItemVar is pointing to some certain memory address, as far as I have understood. Therefore, is there any command to make that target memory address NIL? would something like that work?