Table of Contents

Operator operator >=

Namespace
KZDev.PerfUtils
Assembly
KZDev.PerfUtils.dll

operator >=(ValueRef<T>, ValueRef<T>)

Less than operator overload for ValueRef<T>.

public static bool operator >=(ValueRef<T> left, ValueRef<T> right)

Parameters

left ValueRef<T>

The left operand of the less than operator.

right ValueRef<T>

The right operand of the less than operator.

Returns

bool

True if the left operand is less than the right operand; otherwise, false.

operator >=(ValueRef<T>, T)

Greater than or equal to operator overload for ValueRef<T> and T.

public static bool operator >=(ValueRef<T> left, T right)

Parameters

left ValueRef<T>

The left operand of the greater than or equal to operator.

right T

The right operand of the greater than or equal to operator.

Returns

bool

True if the left operand is greater than or equal to the right operand; otherwise, false.

operator >=(T, ValueRef<T>)

Greater than or equal to operator overload for T and ValueRef<T>.

public static bool operator >=(T left, ValueRef<T> right)

Parameters

left T

The left operand of the greater than or equal to operator.

right ValueRef<T>

The right operand of the greater than or equal to operator.

Returns

bool

True if the left operand is greater than or equal to the right operand; otherwise, false.