Skip to content

Bitwise Operators

Mariusz Gromada edited this page Oct 17, 2017 · 3 revisions

mXparser icon

mXparser - optional donation

If you found the software useful donation is something you might consider :-)

paypal

Bitwise Operators

Key word Category Description Example Since
@~ Bitwise Operator Bitwise unary complement @~10 4.0
@& Bitwise Operator Bitwise AND 10 @& 2 4.0
@^ Bitwise Operator Bitwise exclusive OR 10 @^ 2 4.0
@| Bitwise Operator Bitwise inclusive OR 10 @| 2 4.0
@<< Bitwise Operator Signed left shift 10 @<< 2 4.0
@>> Bitwise Operator Signed right shift 10 @>> 2 4.0
Clone this wiki locally