Difference between revisions of "Debug.getupvalue"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === This function returns the name and the value of the upvalue with index up of the function func. The fu...")
 
Line 4: Line 4:
 
This function returns the name and the value of the upvalue with index up of the function func. The function returns nil if there is no upvalue with the given index.
 
This function returns the name and the value of the upvalue with index up of the function func. The function returns nil if there is no upvalue with the given index.
 
<source lang="lua">
 
<source lang="lua">
(string) (varies), = debug.getupvalue(funcup,)
+
(string), (varies) = debug.getupvalue(func,up)
 
</source>
 
</source>
'''func:''' (function) function to look for upvalue ''''''<br/>
+
'''func''': (function) function to look for upvalue ''''''<br/>
'''up:''' (number) index of the upvalue ''''''<br/>
+
'''up''': (number) index of the upvalue ''''''<br/>
 
'''Returns''' (string) the name of upvalue<br/>
 
'''Returns''' (string) the name of upvalue<br/>
 
'''Returns''' (varies) the value of upvalue<br/>
 
'''Returns''' (varies) the value of upvalue<br/>

Revision as of 11:21, 23 August 2018

Available since: Gideros 2011.6

Description

This function returns the name and the value of the upvalue with index up of the function func. The function returns nil if there is no upvalue with the given index.

(string), (varies) = debug.getupvalue(func,up)

'func: (function) function to look for upvalue '
'up: (number) index of the upvalue '
Returns (string) the name of upvalue
Returns (varies) the value of upvalue