Help for this page

Select Code to Download


  1. or download this
    tie my(%lc_hash), 'Hash::Case::Lower';
    {
    ...
            $lc_hash{$k} = $v;
        }
    }
    
  2. or download this
    # writing it out
    store( \%lc_hash, ... );
    ...
    # reading it in
    my $lc_href = retrieve( ... );
    bless $lc_href, 'Hash::Case::Lower';