-
Notifications
You must be signed in to change notification settings - Fork 158
Bitwise Operators
Mariusz Gromada edited this page Oct 17, 2017
·
3 revisions
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 |
mXparser - Math Parser Java C# .NET (CLS) Library - a super easy, rich and flexible mathematical expressions parser for JAVA Android Kotlin C# .NET and C++ - Provided by Mariusz Gromada, for more information please visit: MathParser.org, MathSpace.pl, mXparser on GitHub pages, mXparser on SourceForge.