Beefy Boxes and Bandwidth Generously Provided by pair Networks RobOMonk
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: auto-magical flipped hashes

by btrott (Parson)
on Jul 12, 2000 at 18:39 UTC ( [id://22239]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to auto-magical flipped hashes

perlfaq4: How do I look up a hash element by value?:
Create a reverse hash: %by_value = reverse %by_key; $key = $by_value{$value}; That's not particularly efficient. It would be more space-efficient to use: while (($key, $value) = each %by_key) { $by_value{$value} = $key; } If your hash could have repeated values, the methods above will only find one of the associated keys. This may or may not worry you.
You could probably use tie to do this magically, using your FLIPPED key.
package SpecialHash; use Tie::Hash; @SpecialHash::ISA = qw/Tie::StdHash/; sub FETCH { $_[1] eq "FLIPPED" ? { reverse %{ $_[0] } } : $_[0]->{$_[1]}; } package main; tie my %hash, 'SpecialHash'; @hash{ qw/foo bar/ } = qw/baz quux/; use Data::Dumper; print Dumper $hash{FLIPPED};

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://22239]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.