# operator ~(uint2x2)

> Returns the result of a componentwise bitwise not operation on a uint2x2 matrix.

## Definition

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

```csharp
public static uint2x2 operator ~(uint2x2 val)
```

### Parameters

**** (\[uint2x2]\(/engine/6000.5/script-reference/unity/mathematics/uint2x2)): Value to use when computing the componentwise bitwise not.

### Returns

| Type                                                                    | Description                                      |
| ----------------------------------------------------------------------- | ------------------------------------------------ |
| [uint2x2](/engine/6000.5/script-reference/unity/mathematics/uint2x2.md) | uint2x2 result of the componentwise bitwise not. |
