Richard Heintze wrote:
> 
> Presently I'm using an integer to implemement an array
> of booleans.
> 
> I suspect this won't work beyond 32 array elements. Is
> there a better way to accommodate longer bit arrays?
> 
> Could I use a string, for example, to store an array
> of bits? Can I just use the bit manipulation operators
> (^= &= |=) on a string?
> 
> How would I store such a bit array in an access database?

You can store as many bits as you want in a scalar.

perldoc -f vec


John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to