Bitwise operators such as AND, OR, XOR and NOT are included in this class.
More...
#include <Bitwise.h>
|
| static int | AND (List< int >^ arguments) |
| |
| static int | OR (List< int >^ arguments) |
| | Performs a bitwise OR operation between the arguments (in their binary form). More...
|
| |
| static int | XOR (List< int >^ arguments) |
| | Performs a bitwise XOR operation between the arguments (in their binary form). More...
|
| |
| static int | NOT (int argument) |
| | Performs a bitwise NOT operation between the arguments (in their binary form). More...
|
| |
Bitwise operators such as AND, OR, XOR and NOT are included in this class.
◆ AND()
| int Topologic::Utilities::Bitwise::AND |
( |
List< int >^ |
arguments | ) |
|
|
static |
◆ NOT()
| int Topologic::Utilities::Bitwise::NOT |
( |
int |
argument | ) |
|
|
static |
Performs a bitwise NOT operation between the arguments (in their binary form).
- Parameters
-
| arguments | A list of arguments |
- Returns
- The bitwise result
◆ OR()
| int Topologic::Utilities::Bitwise::OR |
( |
List< int >^ |
arguments | ) |
|
|
static |
Performs a bitwise OR operation between the arguments (in their binary form).
- Parameters
-
| arguments | A list of arguments |
- Returns
- The bitwise result
◆ XOR()
| int Topologic::Utilities::Bitwise::XOR |
( |
List< int >^ |
arguments | ) |
|
|
static |
Performs a bitwise XOR operation between the arguments (in their binary form).
- Parameters
-
| arguments | A list of arguments |
- Returns
- The bitwise result
The documentation for this class was generated from the following files: