Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Re: Pseudo-hash intrusion...

by Brovnik (Hermit)
on Jun 21, 2001 at 19:58 UTC ( [id://90429]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    No such pseudo-hash field "HASH(0x10a57c)" at ./listref line 22.
    
  2. or download this
    my @bar = sort {$a->{blah} cmp $b->{blah} } @$foo;
  3. or download this
    my $foo = [ {blah=>5,d=>1},
                {blah=>4,d=>2},
    ...
    
    print join(',',map {$_->{blah}} @bar), $/;
    
  4. or download this
    my $foo = [ [5,1],
                [4,2],
    ...
    
    my @bar = sort {$foo->{$a} cmp $foo->{$a} } @$foo;
    # should be my @bar = sort {$a[0] cmp $b[0]} @$foo;
    
  5. or download this
    Can't coerce array into hash at ./listref line 33.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (2)
As of 2024-04-26 02:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found