Help for this page

Select Code to Download


  1. or download this
    my $random = hashing_function('name');
    $array_of_hash_values[$random] = $value;
    
  2. or download this
    sub lookup_value {
       my $index = hashing_function(shift());
       return $array_of_hash_values[$index];
    }