Difference between revisions of "Getmetatable"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === If object does not have a metatable, returns nil. Otherwise, if the object's metatable has a "__metata...") |
m (Text replacement - "</source>" to "</syntaxhighlight>") |
||
(9 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
+ | '''Class:''' [[(global)]]<br/> | ||
+ | |||
=== Description === | === Description === | ||
− | + | Returns the metatable of the given object. | |
− | + | <syntaxhighlight lang="lua"> | |
− | + | (table) = getmetatable(object) | |
− | + | </syntaxhighlight> | |
− | '''object | + | |
+ | *if ''object'' does not have a metatable, returns nil. | ||
+ | *if the ''object'' metatable has a "__metatable" field, returns the associated value. | ||
+ | *otherwise, returns the metatable of the given ''object''. | ||
+ | |||
+ | === Parameters === | ||
+ | '''object''': (object) object from which to get metatable<br/> | ||
+ | |||
+ | === Return values === | ||
'''Returns''' (table) metatable<br/> | '''Returns''' (table) metatable<br/> | ||
+ | |||
+ | {{(global)}} |
Latest revision as of 14:29, 13 July 2023
Available since: Gideros 2011.6
Class: (global)
Description
Returns the metatable of the given object.
(table) = getmetatable(object)
- if object does not have a metatable, returns nil.
- if the object metatable has a "__metatable" field, returns the associated value.
- otherwise, returns the metatable of the given object.
Parameters
object: (object) object from which to get metatable
Return values
Returns (table) metatable