Table of Contents

Enum BinaryOperator

Namespace
Xui.GPU.IR
Assembly
Xui.Core.dll

Binary operator kind.

public enum BinaryOperator

Fields

Add = 0

Addition operator (+).

BitwiseAnd = 13

Bitwise AND (&).

BitwiseOr = 14

Bitwise OR (|).

BitwiseXor = 15

Bitwise XOR (^).

Divide = 3

Division operator (/).

Equal = 5

Equality comparison (==).

GreaterThan = 9

Greater-than comparison (>).

GreaterThanOrEqual = 10

Greater-than-or-equal comparison (>=).

LessThan = 7

Less-than comparison (<).

LessThanOrEqual = 8

Less-than-or-equal comparison (<=).

LogicalAnd = 11

Logical AND.

LogicalOr = 12

Logical OR.

Modulo = 4

Modulo operator (%).

Multiply = 2

Multiplication operator (*).

NotEqual = 6

Inequality comparison (!=).

ShiftLeft = 16

Left bit shift (<<).

ShiftRight = 17

Right bit shift (>>).

Subtract = 1

Subtraction operator (-).