Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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?

In reply to Re (tilly) 1: Exegesis 2 - Perl 6 by tilly
in thread Exegesis 2 - Perl 6 by Ovid

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-04-23 11:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found