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

Re^3: Action at a distance

by LanX (Saint)
on Nov 03, 2022 at 15:05 UTC ( [id://11147949]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Action at a distance (updated)
in thread Action at a distance

> I'd overload = to automatically clone the object on assignment.

Sorry, that's too easy to misunderstand.

Let me be more precise:

$b = $a with = overloaded to ->clone will not do an immediate $b =  $a->clone °

It's rather a kind of copy-on-write.

After the assignment the refs will still be identical : $b == $a

The ->clone ("copy" in COW) will only happen delayed just prior to changing $b or $a ("write" in COW)

But the wording is fuzzy and needs to be tested.

Anyway this could indeed fix the problem of the OP in an efficient way.

Cheers Rolf
(addicted to the 𐍀𐌴𐍂𐌻 Programming Language :)
Wikisyntax for the Monastery

°) In Math::BigInt the cloning is done with the method ->copy

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-25 05:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found