# operator --(float4)

> Returns the result of a componentwise decrement operation on a float4 vector.

## Definition

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

```csharp
public static float4 operator --(float4 val)
```

### Parameters

**** (\[float4]\(/engine/6000.6/script-reference/unity/mathematics/float4)): Value to use when computing the componentwise decrement.

### Returns

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