Help for this page

Select Code to Download


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