Search found 1 match
- Tue Jun 19, 2012 4:29 pm
- Forum: newLISP in the real world
- Topic: Bitwise operators
- Replies: 1
- Views: 1247
Bitwise operators
I am new to this forum. I would like to ask for an improvement to the bitwise operators documentation. Especially to the & (bitwise and), |(bitwise or), ^ (bitwise xor), and ~(bitwise not) operators. For example: (= (& 11 10) 10) (= (& 111 100) 100) as I expected, but (= (& 1000 0010) 8) ; I was exp...