Operator operator >
operator >(ValueRef<T>, ValueRef<T>)
Greater than operator overload for ValueRef<T>.
public static bool operator >(ValueRef<T> left, ValueRef<T> right)
Parameters
leftValueRef<T>The left operand of the greater than operator.
rightValueRef<T>The right operand of the greater than operator.
Returns
- bool
True if the left operand is greater than the right operand; otherwise, false.
operator >(ValueRef<T>, T)
Greater than operator overload for ValueRef<T> and T.
public static bool operator >(ValueRef<T> left, T right)
Parameters
leftValueRef<T>The left operand of the greater than operator.
rightTThe right operand of the greater than operator.
Returns
- bool
True if the left operand is greater than the right operand; otherwise, false.
operator >(T, ValueRef<T>)
Greater than operator overload for T and ValueRef<T>.
public static bool operator >(T left, ValueRef<T> right)
Parameters
leftTThe left operand of the greater than operator.
rightValueRef<T>The right operand of the greater than operator.
Returns
- bool
True if the left operand is greater than the right operand; otherwise, false.