J
Justin To
Hello!
v = 'abc'
some-method(v)
This will send a copy of v to the method, right? If so, how does one
avoid this. How can one send the original and avoid the extra
consumption of resources from copying? Thanks!
v = 'abc'
some-method(v)
This will send a copy of v to the method, right? If so, how does one
avoid this. How can one send the original and avoid the extra
consumption of resources from copying? Thanks!