1Hash::Case::Upper(3) User Contributed Perl Documentation Hash::Case::Upper(3)
2
3
4
6 Hash::Case::Upper - native hash with enforced lower cased keys
7
9 Hash::Case::Upper
10 is a Hash::Case
11 is a Tie::StdHash
12
14 use Hash::Case::Upper;
15 tie my(%uchash), 'Hash::Case::Upper';
16 $uchash{StraNGeKeY} = 3;
17 print keys %uchash; # STRANGEKEY
18
20 "Hash::Case::Upper" extends Hash::Case, which lets you play various
21 trics with hash keys. See Hash::Case for the other implementations.
22
24 $obj->addHashData(HASH)
25
26 See "METHODS" in Hash::Case
27
28 $obj->addPairs(PAIRS)
29
30 See "METHODS" in Hash::Case
31
32 $obj->setHash(HASH)
33
34 See "METHODS" in Hash::Case
35
36 tie(HASH, 'Hash::Case::Upper', [VALUES,] OPTIONS)
37
38 Define HASH to have only upper cased keys. The hash is initialized
39 with the VALUES, specified as ref-array or ref-hash. Currently,
40 there are no OPTIONS defined.
41
43 This module is part of Hash-Case distribution version 1.006, built on
44 June 19, 2008. Website: http://perl.overmeer.net/hash-case/
45
47 Copyrights 2002-2003,2007-2008 by Mark Overmeer. For other contributors
48 see ChangeLog.
49
50 This program is free software; you can redistribute it and/or modify it
51 under the same terms as Perl itself. See
52 http://www.perl.com/perl/misc/Artistic.html
53
54
55
56perl v5.12.0 2008-06-19 Hash::Case::Upper(3)