Bit-Vector-Array

 view release on metacpan or  search on metacpan

lib/Bit/Vector/Array.pm  view on Meta::CPAN

96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
our @ISA = qw(Exporter);
 
# Items to export into callers namespace by default.
our @EXPORT = qw(
        bva
);
 
our $VERSION = '0.02';
 
sub bva(\@)
{
        tie @{$_[0]},'Bit::Vector::Array::Tie';
}
 
 
1;
__END__
 
=head1 NAME



( run in 0.550 second using v1.01-cache-2.11-cpan-a9ef4e587e4 )