Bit-Vector-Array version 0.01
=============================

use Bit::Vector::Array;

# bva is an exported sub to create a bit vector array
bva(my @arr3);	

@arr3=8;	# assign the integer value to 8	= 1000 binary
$arr3[3]=1;	# assign bit 3 to a '1'. 1100 binary
$arr3[4]=0;	# clear bit 4 to a '0'. 0100 binary



INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

None

COPYRIGHT AND LICENCE

Copyright (C) 2004 by Greg London

This library is free software; you can redistribute it 
and/or modify it under the same terms as Perl itself, 
either Perl version 5.8.2 or, at your option, any later
version of Perl 5 you may have available.