Version 2 of How to pass arrays

Updated 2002-04-16 16:31:03

[Explain what's meant.]


There are two choices for passing arrays both "into" and "out of" proc-s:

  • serialization, generally into a list with "array get ..."
  • local proxying of an external variable by use of upvar or occasionally uplevel

[Examples]