Difference between revisions of "NameSpace clear"

From Wiki
Jump to: navigation, search
 
(Description)
Line 7: Line 7:
 
=== Description ===
 
=== Description ===
 
(Added in 1.39) The '''nameSpace''' clear command clears every variables within the current [[namespace]].
 
(Added in 1.39) The '''nameSpace''' clear command clears every variables within the current [[namespace]].
The default [[namespace]] is '''local''' and named '''STD'''. This setting is restored when the script is stopped.
+
The default [[namespace]] is [[Namespace local|local]] and named STD. This setting is restored when the script is stopped.
  
 
''Note:''
 
''Note:''
Line 30: Line 30:
 
nameSpace Pop ; restore previous namespace
 
nameSpace Pop ; restore previous namespace
 
return</pre>
 
return</pre>
 
  
 
=== See Also ===
 
=== See Also ===

Revision as of 01:10, 15 August 2005

nameSpace clear

Flow Control

Synopsis

nameSpace clear

Description

(Added in 1.39) The nameSpace clear command clears every variables within the current namespace. The default namespace is local and named STD. This setting is restored when the script is stopped.

Note: Currently only Local scope is available. Global scope is to be introduced in a future version of EasyUO.

Example

set !return ; make sure !return is empty
gosub test
display ok !return
halt

sub test
	nameSpace Push ; saves current namespace
	nameSpace Local Test ; create a new temporary namespace to work with
	set !return this_is_a_test
	nameSpace Pop ; restore previous namespace
	nameSpace Copy ret* From Local Test ; copy variables to the original namespace
	nameSpace Push ; saves current namespace
	nameSpace Local Test
	nameSpace Clear ; free memory used by temporary namespace
	nameSpace Pop ; restore previous namespace
return

See Also

nameSpace local nameSpace global nameSpace push nameSpace pop nameSpace copy #nsType #nsName

Main_Page Documentation

Flow Control