operator !=
Returns the result of a componentwise not equal operation on two half4 vectors.
Read time 1 minuteLast updated 11 days ago
Definition
- Type: Operator
- Namespace: Unity.Mathematics
- Assembly: UnityEngine.MathematicsModule
operator !=(half4, half4)
Returns the result of a componentwise not equal operation on two half4 vectors.
public static bool4 operator !=(half4 lhs, half4 rhs)
Parameters
Returns
Type | Description |
|---|---|
| bool4 | bool4 result of the componentwise not equal. |
operator !=(half4, half)
Returns the result of a componentwise not equal operation on a half4 vector and a half value.
public static bool4 operator !=(half4 lhs, half rhs)
Parameters
Returns
Type | Description |
|---|---|
| bool4 | bool4 result of the componentwise not equal. |
operator !=(half, half4)
Returns the result of a componentwise not equal operation on a half value and a half4 vector.
public static bool4 operator !=(half lhs, half4 rhs)
Parameters
Returns
Type | Description |
|---|---|
| bool4 | bool4 result of the componentwise not equal. |