Difference between revisions of "light userdata"

(Created page with "From the Lua Reference Manual: (Full) userdata represent C values in Lua. A light userdata represents a pointer. It is a value (like a number): you do not create it, it has no...")
 
(add other languages)
 
Line 6: Line 6:
  
 
A light userdata is equal to "any" light userdata with the same C address.
 
A light userdata is equal to "any" light userdata with the same C address.
 +
 +
== Other Languages ==
 +
{{i18n|light userdata}}

Latest revision as of 10:33, 28 January 2014

From the Lua Reference Manual:

(Full) userdata represent C values in Lua.

A light userdata represents a pointer. It is a value (like a number): you do not create it, it has no individual metatable, and it is not garbage collected (as it was never created).

A light userdata is equal to "any" light userdata with the same C address.

Other Languages