I'm hooked on bitwise for a new security paradigm I'm creating called VMAC. Variable Matrix Access Control. I want to do logical implication on to bit strings. Just trying to avoid echoeureka (reinventing the wheel).
Before I reinvent the wheel, is there an established shortcut to emulate ⇒ (logical implication) using AND and OR and NOT or other basic SQL binary operators?
XNOR would allow me to cut ⇒ emulation down to four operations: NOT, XOR, OR, AND. But it is not widely available. Any known shortcuts to XNOR? I was thinking of something like AND operation on operands plus NOTted operands off the top of my head.
Any comments on efficiency achieved by implementation of bitwise data structures on a 64-bit platform, or on the speed of multi-threaded apps using concurrent threads operating on word-size segments of larger data object?
(Sorry, I'm not a computer scientist)