Help for this page

Select Code to Download


  1. or download this
    $hash{'keyA','keyB'} = "Some Value";
    print $hash{'keyB', 'keyA'}; # prints "Some Value";
    
  2. or download this
    package Hash::MultiKey::Unordered;
    use strict;
    ...
       return $key;
    }
    1;