digitalmars.D.learn - bitwise operators
- Orgoton (4/4) Mar 06 2007 What are the binary operators in D?
- Frits van Bommel (3/8) Mar 06 2007 bitwise negation: ~var
What are the binary operators in D? Bitwise and is made by var1&var2 Or is made by var1|var2 What about bitwise negation and XOR?
Mar 06 2007
Orgoton wrote:What are the binary operators in D? Bitwise and is made by var1&var2 Or is made by var1|var2 What about bitwise negation and XOR?bitwise negation: ~var bitwise xor: var1 ^ var2
Mar 06 2007