in reply to The behavior of array and hash OPs
Its got two parts.
is really something like$array[0] = $i;
There is no av_store_copy, there is av_store and sv_mortalcopy.$array[0] = sv_mortalcopy($i);
Seems somebody already thought about this some
https://github.com/Leont/libperl--/blob/master/perl++/headers/array.h
https://github.com/Leont/libperl--/blob/master/perl++/doc/Array.pod
|
|---|