&^ bit clear (and not) integers
On Sep 10, 2012 7:23 PM, "Jonathan Pittman" <jonathan.m...@gmail.com> wrote:
>
> "and NOT" vs "AND NOT"
>
> grammar vs. identifiers
>
> Using all caps would distinguish these as logical/bitwise operators as opposed to components of English grammar in a phrase or sentence.
I honestly thank you for the explanation but I'm too dumb to get it. The(se) operators have the same semantics in an English sentence as they have in a programming language, so I fail to understand what the difference is (modulo lexical grammar).
Not your fault, but mine for sure, sorry.
-j
What I think he's trying to get at is the difference between:
1. AND NOT - an operation that does a&^b.
2. and NOT - an operation that does both a&^b, and ^a.