Debug.getupvalue

From GiderosMobile
Revision as of 15:26, 13 July 2023 by Hgy29 (talk | contribs) (Text replacement - "<source" to "<syntaxhighlight")


Available since: Gideros 2011.6
Class: debug

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. <syntaxhighlight lang="lua"> (string), (varies) = debug.getupvalue(func,up) </source>

Parameters

func: (function) function to look for upvalue
up: (number) index of the upvalue

Return values

Returns (string) the name of upvalue
Returns (varies) the value of upvalue