Topologic  0.8.9
Static Public Member Functions | List of all members
Topologic::Utilities::Bitwise Class Reference

Bitwise operators such as AND, OR, XOR and NOT are included in this class. More...

#include <Bitwise.h>

Static Public Member Functions

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...
 

Detailed Description

Bitwise operators such as AND, OR, XOR and NOT are included in this class.

Member Function Documentation

◆ AND()

int Topologic::Utilities::Bitwise::AND ( List< int >^  arguments)
static

Parameters
arguments
Returns

◆ NOT()

int Topologic::Utilities::Bitwise::NOT ( int  argument)
static

Performs a bitwise NOT operation between the arguments (in their binary form).

Parameters
argumentsA 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
argumentsA 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
argumentsA list of arguments
Returns
The bitwise result

The documentation for this class was generated from the following files: