Weak Tables
Lua's way of memory management is running something called a garbage collector. Every garbage collection cycle, all objects that have no references is freed back up to use to the program. Weak tables are a way to let the garbage collector know that it can go ahead and free up the memory if there are no references to that object anymore.
The weakness of a table is set by the __mode
metamethod, if the string of __mode
contains k, the keys are weak. If it contains v, the values are weak. If it contains both (kv), both the keys and values are considered weak.
Example:
Last updated