| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
################################################################################ |
|
2
|
|
|
|
|
|
|
# |
|
3
|
|
|
|
|
|
|
# Copyright (c) Marcus Holland-Moritz. All rights reserved. |
|
4
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify |
|
5
|
|
|
|
|
|
|
# it under the same terms as Perl itself. |
|
6
|
|
|
|
|
|
|
# |
|
7
|
|
|
|
|
|
|
################################################################################ |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
package Tie::Hash::Indexed; |
|
10
|
6
|
|
|
6
|
|
34026
|
use 5.004; |
|
|
6
|
|
|
|
|
60
|
|
|
11
|
6
|
|
|
6
|
|
33
|
use strict; |
|
|
6
|
|
|
|
|
11
|
|
|
|
6
|
|
|
|
|
178
|
|
|
12
|
6
|
|
|
6
|
|
35
|
use DynaLoader; |
|
|
6
|
|
|
|
|
11
|
|
|
|
6
|
|
|
|
|
248
|
|
|
13
|
6
|
|
|
6
|
|
3063
|
use Tie::Hash; |
|
|
6
|
|
|
|
|
6311
|
|
|
|
6
|
|
|
|
|
246
|
|
|
14
|
6
|
|
|
6
|
|
63
|
use vars qw($VERSION @ISA); |
|
|
6
|
|
|
|
|
14
|
|
|
|
6
|
|
|
|
|
518
|
|
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
@ISA = qw(DynaLoader Tie::Hash); |
|
17
|
|
|
|
|
|
|
$VERSION = '0.08'; |
|
18
|
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
bootstrap Tie::Hash::Indexed $VERSION; |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
|
22
|
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |