Table of Contents

Operator operator !=

Namespace
KZDev.PerfUtils
Assembly
KZDev.PerfUtils.dll

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

Inequality operator overload for ValueRef<T>.

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

Parameters

left ValueRef<T>

The left operand of the inequality operator.

right ValueRef<T>

The right operand of the inequality operator.

Returns

bool

True if the left and right operands are not equal; otherwise, false.

operator !=(ValueRef<T>, T)

Inequality 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 inequality operator.

right T

The right operand of the inequality operator.

Returns

bool

True if the left and right operands are not equal; otherwise, false.

operator !=(T, ValueRef<T>)

Inequality operator overload for T and ValueRef<T>.

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

Parameters

left T

The left operand of the inequality operator.

right ValueRef<T>

The right operand of the inequality operator.

Returns

bool

True if the left and right operands are not equal; otherwise, false.