# operator <

> Returns the result of a componentwise less than operation on two int3 vectors.

## Definition

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

## operator \<(int3, int3)

Returns the result of a componentwise less than operation on two int3 vectors.

```csharp
public static bool3 operator <(int3 lhs, int3 rhs)
```

### Parameters

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

### Returns

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

## operator \<(int3, int)

Returns the result of a componentwise less than operation on an int3 vector and an int value.

```csharp
public static bool3 operator <(int3 lhs, int rhs)
```

### Parameters

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

### Returns

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

## operator \<(int, int3)

Returns the result of a componentwise less than operation on an int value and an int3 vector.

```csharp
public static bool3 operator <(int lhs, int3 rhs)
```

### Parameters

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

### Returns

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