--- Sean wrote: > Well, it might be, how to say, "tricky"(?) to describe. > For example, the below script won't destroy the 'v-1'. > There is no such thing as the global/static/local 'v-1', > in fact, 'v-1' is not a variable at all in the ordinary sense.
> local v=vec.create(100,100) ;; assume the created vec is 'v-1' > v="" > quit You are right, it is a complex matter to describe. I am confident however that Bruce would find a concise way of noting this information if it catches his attention. Anyway, here's my feeble attempt�� V = Vec.Create(Capacity, Growth, MinSize) Vec.Create creates a vector with specified Capacity and returns a handle for referencing in subsequent manipulations. At the time of script termination, for every handle to a vector contained by a locally declared variable (such as V in the example syntax above), its corresponding vector will be destroyed at the same time as the variable itself. Etc. -- Alex Peters / Melbourne, Australia PowerPro v4.1.00 / Windows XP ------------------------ Yahoo! Groups Sponsor --------------------~--> $9.95 domain names from Yahoo!. Register anything. http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/JV_rlB/TM --------------------------------------------------------------------~-> Attention: PowerPro's Web site has moved: http://www.ppro.org Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
