Skip to content

Bitwise Operators

Mariusz Gromada edited this page Apr 15, 2022 · 3 revisions

Did you find mXparser useful? If yes:

INFIMA

Bitwise Operators

Key word Category Description Example Since
@~ Bitwise Operator Bitwise unary complement @~a 4.0
@& Bitwise Operator Bitwise AND a @& b 4.0
@^ Bitwise Operator Bitwise exclusive OR a @^ b 4.0
@| Bitwise Operator Bitwise inclusive OR a @| b 4.0
@<< Bitwise Operator Signed left shift a @<< b 4.0
@>> Bitwise Operator Signed right shift a @>> b 4.0

as of 2022-04-15