> ## Documentation Index
> Fetch the complete documentation index at: https://docs.metrics-man.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Void

# \$void

The `$void` operator returns the void (nil) value, typically used for early exits in block operations.

## Input

* No parameters required

## Output

* The void (nil) value

## Examples

### Basic Usage

```json theme={null}
{
  "$void": []
}
```

Result: `null`

### Using in a Block

```json theme={null}
{
  "$block": [
    {
      "$let": [
        "x",
        10
      ]
    },
    {
      "$ifelse": [
        {
          "$gt": [
            {
              "$var": ["x"]
            },
            5
          ]
        },
        {
          "$void": []
        },
        {
          "$var": ["x"]
        }
      ]
    }
  ]
}
```

Result: `null` if x is greater than 5 (with early exit), otherwise the value of x
