- or download this
package Insensitive::Hash;
use strict;
...
}
1;
- or download this
use strict;
use warnings;
...
$hash->get( 'content-type' ); # => "text/plain"
$hash->set( 'CONTENT-TYPE' => 'text/html' );
- or download this
package Insensitive::Hash;
use strict;
...
}
1;
- or download this
use strict;
use warnings;
...
$hash{'CONTENT-TYPE'} = 'text/html';
# <=> $hash->STORE( 'CONTENT-TYPE' => 'text/html' );