http://qs321.pair.com?node_id=80789


in reply to Exegesis 2 - Perl 6

Several of these changes look like they are moving more towards like Ruby and Python today. Some of the automatic dereferencing things make me wonder whether Larry is toying with changing Perl's copy-by-value on assignment rule as well.

What do I mean by that?

Well in Perl 5 if you say:

$foo = $bar;
a new value is made of $bar and copied into $foo. If I later say:
$foo .= $baz;
then $foo is modified in place. By contrast in Ruby if you say:
foo = bar;
you copy by reference. So later on if you say:
foo += baz
that expands to:
foo = foo + baz;
and you create a new string and copy a reference of that to foo. To get the fast in-place modification you have to instead try:
foo << baz;
which will also modify bar.

Anyways if Perl changed this basic semantic, here is what would be affected:

  1. You save memory.
  2. Copying data speeds up.
  3. Incrementally building large strings slows down unless you provide an operator for it with explicit side-effects.
  4. Subroutines that expect to change their arguments by reference would be hard to rewrite from Perl 5 to Perl 6.
Does anyone have any idea what Larry's thinking is on this issue? Will Perl continue to copy-by-value on assignment?