line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
################################################################################ |
2
|
|
|
|
|
|
|
# |
3
|
|
|
|
|
|
|
# Copyright (c) 2002-2016 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
|
|
33260
|
use 5.004; |
|
6
|
|
|
|
|
51
|
|
11
|
6
|
|
|
6
|
|
45
|
use strict; |
|
6
|
|
|
|
|
10
|
|
|
6
|
|
|
|
|
191
|
|
12
|
6
|
|
|
6
|
|
32
|
use DynaLoader; |
|
6
|
|
|
|
|
12
|
|
|
6
|
|
|
|
|
260
|
|
13
|
6
|
|
|
6
|
|
3093
|
use Tie::Hash; |
|
6
|
|
|
|
|
6325
|
|
|
6
|
|
|
|
|
240
|
|
14
|
6
|
|
|
6
|
|
41
|
use vars qw($VERSION @ISA); |
|
6
|
|
|
|
|
14
|
|
|
6
|
|
|
|
|
488
|
|
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
@ISA = qw(DynaLoader Tie::Hash); |
17
|
|
|
|
|
|
|
$VERSION = '0.06'; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
bootstrap Tie::Hash::Indexed $VERSION; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |