# operator <

> Returns the result of a componentwise less than operation on two uint4x4 matrices.

## Definition

* **Type:** Operator
* **Namespace:** [Unity.Mathematics](/engine/6000.5/script-reference/unity/mathematics.md)
* **Assembly:** UnityEngine.MathematicsModule

## operator \<(uint4x4, uint4x4)

Returns the result of a componentwise less than operation on two uint4x4 matrices.

```csharp
public static bool4x4 operator <(uint4x4 lhs, uint4x4 rhs)
```

### Parameters

**** (\[uint4x4]\(/engine/6000.5/script-reference/unity/mathematics/uint4x4)): Left hand side uint4x4 to use to compute componentwise less than.**** (\[uint4x4]\(/engine/6000.5/script-reference/unity/mathematics/uint4x4)): Right hand side uint4x4 to use to compute componentwise less than.

### Returns

| Type                                                                    | Description                                    |
| ----------------------------------------------------------------------- | ---------------------------------------------- |
| [bool4x4](/engine/6000.5/script-reference/unity/mathematics/bool4x4.md) | bool4x4 result of the componentwise less than. |

## operator \<(uint4x4, uint)

Returns the result of a componentwise less than operation on a uint4x4 matrix and a uint value.

```csharp
public static bool4x4 operator <(uint4x4 lhs, uint rhs)
```

### Parameters

**** (\[uint4x4]\(/engine/6000.5/script-reference/unity/mathematics/uint4x4)): Left hand side uint4x4 to use to compute componentwise less than.**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): Right hand side uint to use to compute componentwise less than.

### Returns

| Type                                                                    | Description                                    |
| ----------------------------------------------------------------------- | ---------------------------------------------- |
| [bool4x4](/engine/6000.5/script-reference/unity/mathematics/bool4x4.md) | bool4x4 result of the componentwise less than. |

## operator \<(uint, uint4x4)

Returns the result of a componentwise less than operation on a uint value and a uint4x4 matrix.

```csharp
public static bool4x4 operator <(uint lhs, uint4x4 rhs)
```

### Parameters

**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): Left hand side uint to use to compute componentwise less than.**** (\[uint4x4]\(/engine/6000.5/script-reference/unity/mathematics/uint4x4)): Right hand side uint4x4 to use to compute componentwise less than.

### Returns

| Type                                                                    | Description                                    |
| ----------------------------------------------------------------------- | ---------------------------------------------- |
| [bool4x4](/engine/6000.5/script-reference/unity/mathematics/bool4x4.md) | bool4x4 result of the componentwise less than. |
