Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

RE: Building a byte to test truth table

by dchetlin (Friar)
on Nov 02, 2000 at 02:23 UTC ( [id://39521]=note: print w/replies, xml ) Need Help??


in reply to Building a byte to test truth table

Why not do real bitwise math?

$byte = 0; $byte |= 1 if $obj->{organization} =~ /\S/; $byte |= 1<<1 if $obj->{foo} =~ /\S/; $byte |= 1<<2 if $obj->{bar} =~ /\S/; ... $byte |= 1<<7 if $obj->{report} =~ /\S/; # Here are your checks, rewritten as bitmasks if ($byte & 1<<7 and not $byte & 7<<1) { # do more checks against database } elsif (not $byte & 15<<4 and $byte & 1<<3 and not $byte & 3) { # do other checks against database } else { # produce error message }

Update: while I was checking my solutions, several people already gave the right answers. Specifically, tye's looks nice to me. I'm leaving this here only for completeness' sake.

-dlc

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://39521]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (7)
As of 2024-04-19 10:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found