Difference between revisions of "Nsv lappend"

From AOLserver Wiki
Jump to navigation Jump to search
(imported from WiKit id 844)
 
 
Line 26: Line 26:
 
----
 
----
  
[[Category Documentation]] - [[Category Core Tcl API]]
+
[[Category:Documentation]] - [[Category:Core Tcl API]]

Latest revision as of 19:41, 7 February 2009

Man page: http://aolserver.com/docs/tcl/nsv_lappend.html


NAME

nsv_lappend - Append to the list specified by the key

SYNOPSIS

nsv_lappend array key value ?value ...?

DESCRIPTION

Append all of the value arguments as list elements to variable key in the array. If key doesn't exist, it is created as a list with elements given by the value arguments

EXAMPLES

   % nsv_lappend shared_array key1 value2
   value1 value2

SEE ALSO

Thread-shared Variables

-