|
From: | Michael Goffioul |
Subject: | Re: avoiding copying arguments by value when calling a function |
Date: | Mon, 20 Aug 2012 15:00:36 +0100 |
Hello,
if I understand correctly, if I write a function like this:
function result = foo(bar)
# function body goes here
endfunction
and if I call the function this way
result = foo(bar);
, the 'bar' argument is copied by value each time 'foo' is called.
[Prev in Thread] | Current Thread | [Next in Thread] |