operator ==
Returns the result of a componentwise equality operation on two half4 vectors.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Operator
- Namespace: Unity.Mathematics
- Assembly: UnityEngine.MathematicsModule
operator ==(half4, half4)
Returns the result of a componentwise equality operation on two half4 vectors.
public static bool4 operator ==(half4 lhs, half4 rhs)
Parameters
Returns
Type | Description |
|---|---|
| bool4 | bool4 result of the componentwise equality. |
operator ==(half4, half)
Returns the result of a componentwise equality 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 equality. |
operator ==(half, half4)
Returns the result of a componentwise equality 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 equality. |