Difference between revisions of "Debug.setupvalue"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
<languages />
 
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
 
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/debug|debug]]<br/>
 
'''<translate>Class</translate>:''' [[Special:MyLanguage/debug|debug]]<br/>
 
=== <translate>Description</translate> ===
 
=== <translate>Description</translate> ===
 
<translate>This function assigns the value value to the upvalue with index up of the function func. The function returns nil if there is no upvalue with the given index. Otherwise, it returns the name of the upvalue.</translate>
 
<translate>This function assigns the value value to the upvalue with index up of the function func. The function returns nil if there is no upvalue with the given index. Otherwise, it returns the name of the upvalue.</translate>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(string) = debug.setupvalue(func,up,value)
 
(string) = debug.setupvalue(func,up,value)
</source>
+
</syntaxhighlight>
 
=== <translate>Parameters</translate> ===
 
=== <translate>Parameters</translate> ===
 
'''func''': (function) <translate>function to set the upvalue for</translate> <br/>
 
'''func''': (function) <translate>function to set the upvalue for</translate> <br/>
Line 13: Line 14:
 
=== <translate>Return values</translate> ===
 
=== <translate>Return values</translate> ===
 
'''<translate>Returns</translate>''' (string) <translate>name of the upvalue or nil</translate><br/>
 
'''<translate>Returns</translate>''' (string) <translate>name of the upvalue or nil</translate><br/>
 +
 +
{{Debug}}

Latest revision as of 15:26, 13 July 2023


Available since: Gideros 2011.6
Class: debug

Description

This function assigns the value value to the upvalue with index up of the function func. The function returns nil if there is no upvalue with the given index. Otherwise, it returns the name of the upvalue.

(string) = debug.setupvalue(func,up,value)

Parameters

func: (function) function to set the upvalue for
up: (number) index of the upvalue
value: (varies) value to set as upvalue

Return values

Returns (string) name of the upvalue or nil