TestimoX

API Reference

Enum

ComparisonOperation

Namespace TestimoX.Types
Assembly TestimoX
Base Enum
Implements
IComparable ISpanFormattable IFormattable IConvertible
Modifiers sealed

Basic comparison operations used by the type compatibility engine.

Inheritance

  • Enum
  • ComparisonOperation

Values

public const ComparisonOperation LessThan #

Left value is strictly less than right value.

Value: 0
public const ComparisonOperation LessThanOrEqual #

Left value is less than or equal to right value.

Value: 1
public const ComparisonOperation EqualTo #

Left value is equal to right value.

Value: 2
public const ComparisonOperation GreaterThanOrEqual #

Left value is greater than or equal to right value.

Value: 3
public const ComparisonOperation GreaterThan #

Left value is strictly greater than right value.

Value: 4
public const ComparisonOperation NotEqual #

Left value is not equal to right value.

Value: 5