Re: [Rd] pass-by-reference

2010-07-08 Thread Henrik Bengtsson
See packages R.oo and proto. If you wish to do it yourself, you want to utilize environments for this. /Henrik On Thu, Jul 8, 2010 at 6:52 AM, Paul Bailey pdbai...@umd.edu wrote: I'm working with a large object that I want to modify slightly in a function. Pass-by-reference would make a lot

Re: [Rd] pass-by-reference

2010-07-08 Thread Henrik Bengtsson
...and for tracing memory allocations/duplications, see tracemem(). /Henrik On Thu, Jul 8, 2010 at 9:14 AM, Henrik Bengtsson h...@stat.berkeley.edu wrote: See packages R.oo and proto. If you wish to do it yourself, you want to utilize environments for this. /Henrik On Thu, Jul 8, 2010 at

Re: [Rd] pass-by-reference

2010-07-08 Thread Gabor Grothendieck
On Thu, Jul 8, 2010 at 12:52 AM, Paul Bailey pdbai...@umd.edu wrote: I'm working with a large object that I want to modify slightly in a function. Pass-by-reference would make a lot of sense, but I don't know how to do it. I've searched this archive and thought that I can do something like