1Hash::Case::Lower(3) User Contributed Perl Documentation Hash::Case::Lower(3)
2
3
4
6 Hash::Case::Lower - hash with enforced lower cased keys
7
9 Hash::Case::Lower
10 is a Hash::Case
11 is a Tie::StdHash
12 is a Tie::Hash
13
15 use Hash::Case::Lower;
16 tie my(%lchash), 'Hash::Case::Lower';
17 $lchash{StraNGeKeY} = 3;
18 print keys %lchash; # strangekey
19
21 Hash::Case::Lower extends Hash::Case, which lets you play various trics
22 with hash keys. See Hash::Case for the other implementations.
23
25 tie HASH, 'Hash::Case::Lower', [VALUES,] OPTIONS
26 Define HASH to have only lower cased keys. The hash is initialized
27 with the VALUES, specified as ref-array or ref-hash. Currently,
28 there are no OPTIONS defined.
29
31 Hash::Case Hash::Case::Upper Hash::Case::Preserve
32
34 Mark Overmeer (mark@overmeer.net). All rights reserved. This program
35 is free software; you can redistribute it and/or modify it under the
36 same terms as Perl itself.
37
39 This code is beta, version 1.003
40
41 Copyright (c) 2002-2003 Mark Overmeer. All rights reserved. This pro‐
42 gram is free software; you can redistribute it and/or modify it under
43 the same terms as Perl itself.
44
45
46
47perl v5.8.8 2003-10-27 Hash::Case::Lower(3)