Table of Contents

Enum CompareOp

Namespace
Typhon.Engine
Assembly
Typhon.Engine.dll

Comparison operator applied between a field value and a predicate threshold.

public enum CompareOp : byte

Fields

Equal = 0

Field equals the threshold.

GreaterThan = 2

Field is strictly greater than the threshold.

GreaterThanOrEqual = 4

Field is greater than or equal to the threshold.

LessThan = 3

Field is strictly less than the threshold.

LessThanOrEqual = 5

Field is less than or equal to the threshold.

NotEqual = 1

Field does not equal the threshold.