Quote:
Originally Posted by HamletEagle
Also we have "&" which is for bits and check if a given bit is contained in a sum of bits.
|
& is actually bitwise AND operator and it multiplies every bit and returns the answer
example:
Code:
1100
&0101
=0100
(1*0=0; 1*1=1; 0*0=0; 0*1=0)