Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: How can I access object data in a user defined sort cmp function?

by Anonymous Monk
on Jan 28, 2015 at 14:34 UTC ( [id://1114753]=note: print w/replies, xml ) Need Help??


in reply to How can I access object data in a user defined sort cmp function?

(I came to the conclusion Guido was right about whitespace)

using global... I mean, local our variables. Just like $a and $b.
use strict; use warnings; sub sort_aux { our $self; $a <=> $b; } sub hash_ref_keys_by_value { local our $self = shift; my @keys = sort by_value keys %{ $self->{hash_ref} }; }
  • Comment on Re: How can I access object data in a user defined sort cmp function?
  • Download Code

Replies are listed 'Best First'.
Re^2: How can I access object data in a user defined sort cmp function?
by Laurent_R (Canon) on Jan 28, 2015 at 18:58 UTC
    (I came to the conclusion Guido was right about whitespace)
    Hilarious! ++

    Je suis Charlie.
      just if hacked directly and uncompiled like in this case, Python would be a muuuuuuuuuch bigger mess.

      Cheers Rolf

      PS: Je suis Charlie!

Re^2: How can I access object data in a user defined sort cmp function?
by sundialsvc4 (Abbot) on Jan 28, 2015 at 22:59 UTC
    [deleted: got attached to the wrong reply!!]

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (2)
As of 2024-04-20 06:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found