The task is to transfer a list of huge strings to subroutibe, but avoiding their copying on transfer. Say I have a reference named $ref pointing to the very large string. Also let's have f($) subroutine accepting a single argument. There are no problem to transfer this string to f:
f($$ref); # data pointed by $ref is not copied to temporary value here
Really I have not a single string, but list of them, let's assign them to @a:
my @a = ($ref_1, $ref_2, $ref_3, ...);
Now the problem would be solved by
f(map {$$_} @a);
but map does copy every dereferenced item from @a, and then transfer those copied instances to f.
I have no control on f since it actually is the method from CPAN module.
So is there possible to solve the task? Much thanks in advance.
$refis a reference, why don't you just callf($ref)? For a list, you can justf($_) for @a. – choroba Jan 23 '12 at 13:08XML::LibXMLthen please say so. – Zaid Jan 23 '12 at 13:16fis the package method, which accepts list of values, so I've to provide it with list of dereferenced scalars. – indexless Jan 23 '12 at 14:02