Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: How to best pass on the context / wantarray?

by Roy Johnson (Monsignor)
on Mar 27, 2006 at 16:44 UTC ( [id://539480]=note: print w/replies, xml ) Need Help??


in reply to How to best pass on the context / wantarray?

Rather than relying on (possibly subtle) context or having two versions of each method, you might want to have the copy method and the mutator method and call them both when you want a modified copy. That seems the most clear (and flexible) to me. The overhead is not particularly onerous.
$cursor->move_right(3); # move cursor three chars to the right $cursor->move_down(); # move cursor one line downwards # and my $left_pos = $cursor->copy->move_left(1); # position one char to the left of the cursor my $start = $cursor->copy->start_of_document();

Caution: Contents may have been coded under pressure.

Replies are listed 'Best First'.
Re^2: How to best pass on the context / wantarray?
by saberworks (Curate) on Mar 27, 2006 at 18:41 UTC
    Thank you. I was wondering after reading the original post why he was using the context (list or scalar) to determine whether to operate on a copy or the original. What does "a copy or the original" have to do with "list or scalar context" in general? Nothing! If you want to operate on a copy, grab a copy and operate on it.

    Although, I might be misunderstanding what is going on.
      The difference was between void or non-void context, not between list or scalar.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (5)
As of 2024-04-19 12:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found