Difference between revisions of "Nsv append"

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

Latest revision as of 19:40, 7 February 2009

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


NAME

nsv_append - Append to the value specified by the key

SYNOPSIS

nsv_append array key value ?value ...?

DESCRIPTION

Append all of the value arguments to the current value of variable key in the array. If key doesn't exist, it is given a value equal to the concatenation of all the value arguments

EXAMPLES

   % nsv_append shared_array key1 foo
   value1foo

SEE ALSO

Thread-shared Variables

-