Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re (tilly) 1: Exegesis 2 - Perl 6

by tilly (Archbishop)
on May 16, 2001 at 06:12 UTC ( [id://80789]=note: print w/replies, xml ) Need Help??


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?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://80789]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-03-19 03:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found