On Thu, 7 Apr 2016, oleg_komashko(a)ukr.net wrote:
> Anyone have reason why we should wait?
Dear Allin,
The package editor seems to not know yet
about new feature of matrices as a function
argument
When I try to package something like that
function void ma (scalar x , matrix m[null])
isnm = isnull(m)
if isnm
print "null matrix"
else
print m
endif
end function
After saving the ma.gfn
The function becomes
function void ma (scalar x , matrix m)
i. e. "[null]" is autodeleted
Thanks for spotting this. Now fixed in git and snapshots.
Allin