Difference between revisions of "Setfenv"

From GiderosMobile
m
 
(8 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/>
 +
 +
'''This function is deprecated'''
 
=== Description ===
 
=== Description ===
<translate>Sets the environment to be used by the given function. f can be a Lua function or a number that specifies the function at that stack level: Level 1 is the function calling setfenv. setfenv returns the given function.  
+
Sets the environment to be used by the given function.
 +
<syntaxhighlight lang="lua">
 +
(varies) = setfenv(f,table)
 +
</syntaxhighlight>
 +
 
 +
''f'' can be a Lua function or a number that specifies the function at that stack level: Level 1 is the function calling ''setfenv''. ''setfenv'' returns the given function.
  
 +
As a special case, when f is 0 ''setfenv'' changes the environment of the running thread. In this case, ''setfenv'' returns no values.
  
As a special case, when f is 0 setfenv changes the environment of the running thread. In this case, setfenv returns no values.</translate>
 
<source lang="lua">
 
(varies) = setfenv(f,table)
 
</source>
 
 
=== Parameters ===
 
=== Parameters ===
'''f''': (varies) <translate>function or number(call stack level)</translate> <br/>
+
'''f''': (varies) function or number(call stack level)<br/>
'''table''': (table) <translate>environment table to set</translate> <br/>
+
'''table''': (table) environment table to set<br/>
 +
 
 
=== Return values ===
 
=== Return values ===
'''Returns''' (varies) <translate>returns provided function or nil</translate><br/>
+
'''Returns''' (varies) returns provided function or nil<br/>
 +
 
 +
=== Example ===
 +
<syntaxhighlight lang="lua">
 +
a = 1  -- create a global variable
 +
-- change current environment
 +
setfenv(1, {_G = _G})
 +
_G.print(a)      --> nil
 +
_G.print(_G.a)  --> 1
 +
</syntaxhighlight>
 +
 
 +
=== See also ===
 +
'''https://www.lua.org/pil/14.3.html'''<br/>
 +
'''[[setsafeenv]]'''
 +
 
 +
{{(global)}}

Latest revision as of 07:39, 6 February 2025

Available since: Gideros 2011.6
Class: (global)

This function is deprecated

Description

Sets the environment to be used by the given function.

(varies) = setfenv(f,table)

f can be a Lua function or a number that specifies the function at that stack level: Level 1 is the function calling setfenv. setfenv returns the given function.

As a special case, when f is 0 setfenv changes the environment of the running thread. In this case, setfenv returns no values.

Parameters

f: (varies) function or number(call stack level)
table: (table) environment table to set

Return values

Returns (varies) returns provided function or nil

Example

a = 1   -- create a global variable
-- change current environment
setfenv(1, {_G = _G})
_G.print(a)      --> nil
_G.print(_G.a)   --> 1

See also

https://www.lua.org/pil/14.3.html
setsafeenv