Subversion Repositories DevTools

Rev

Rev 255 | Rev 317 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 255 Rev 283
Line 11... Line 11...
11
#                 and hashes
11
#                 and hashes
12
#
12
#
13
#
13
#
14
#......................................................................#
14
#......................................................................#
15
 
15
 
16
require 5.006_001;
-
 
17
use strict;
-
 
18
use warnings;
-
 
19
 
16
 
20
################################################################################
17
################################################################################
21
#   Global variables used by functions in this package
18
#   Global variables used by functions in this package
22
#   For historical reasons many of these variabeles are global
19
#   For historical reasons many of these variabeles are global
23
#
20
#
24
 
21
 
25
package ArrayHashUtils;
22
package ArrayHashUtils;
-
 
23
require 5.006_001;
-
 
24
use strict;
-
 
25
use warnings;
26
 
26
 
27
our (@ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS, $VERSION);
-
 
28
use Exporter;
-
 
29
 
27
#
30
$VERSION = 1.00;
-
 
31
@ISA = qw(Exporter);
28
#   Package interface
32
 
29
#
33
# Symbols to autoexport (:DEFAULT tag)
30
use base qw(Exporter);
-
 
31
our $VERSION = 1.00;
34
@EXPORT = qw(
32
our @EXPORT = qw(
35
            HashJoin
33
            HashJoin
36
            HashUniqueJoin
34
            HashUniqueJoin
37
            UniquePush
35
            UniquePush
38
            );
36
            );
39
 
37