root/docs/yappo/20080515-yapcasia2008/with_hintbits.pm

Revision 11698, 222 bytes (checked in by yappo, 8 months ago)

add YAPC::Asia 2008 talks

Line 
1package with_hintbits;
2use strict;
3use warnings;
4my $hint_bits = 0x20000; # HINT_LOCALIZE_HH
5sub import { $^H |= $hint_bits;
6$^H{$_[0]} = ($_[1] || 'default') }
7sub unimport { $^H &= ~ $hint_bits;
8delete $^H{(shift)} }
91;
Note: See TracBrowser for help on using the browser.