Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^2: Syntax explanation required (uniq)

by LanX (Saint)
on Jan 03, 2013 at 01:58 UTC ( [id://1011382]=note: print w/replies, xml ) Need Help??


in reply to Re: Syntax explanation required
in thread Syntax explanation required

I was meditating about advising List::MoreUtils:uniq as a best practice, cause I thought it prevents any stringification problems.¹

Unfortunately it doesn't! :(

DB<125> $a=["A"] => ["A"] DB<126> $b=["B"] => ["B"] DB<127> @a=($a,"$a",$b,"$b") => (["A"], "ARRAY(0x96cb0f0)", ["B"], "ARRAY(0x96cfd80)") DB<128> @b= uniq @a => (["A"], ["B"])

thats quite disappointing for an XS-module ...

EDIT: Well at least it preserves order...

Cheers Rolf

¹) I should explain, the problem with using hashes for set operations is that keys are stringified, that means working with anything which isn't a string or at least a scalar comes with a risk.

Practically it's not possible to safely use a ref as a key because of the resulting string is irreversible.

DB<130> $h{$a}=5 => 5 DB<131> %h => ("ARRAY(0x96d1f00)", 5)

UPDATE:

improved code example...

Replies are listed 'Best First'.
Re^3: Syntax explanation required (uniq)
by ghosh123 (Monk) on Jan 03, 2013 at 12:50 UTC
    Thank you all. Very helpful !!!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1011382]
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: (4)
As of 2024-04-23 07:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found