# operator <

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

## Definition

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

## operator \<(float2x3, float2x3)

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

```csharp
public static bool2x3 operator <(float2x3 lhs, float2x3 rhs)
```

### Parameters

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

### Returns

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

## operator \<(float2x3, float)

Returns the result of a componentwise less than operation on a float2x3 matrix and a float value.

```csharp
public static bool2x3 operator <(float2x3 lhs, float rhs)
```

### Parameters

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

### Returns

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

## operator \<(float, float2x3)

Returns the result of a componentwise less than operation on a float value and a float2x3 matrix.

```csharp
public static bool2x3 operator <(float lhs, float2x3 rhs)
```

### Parameters

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

### Returns

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