$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
null
Using in a Block
null if x is greater than 5 (with early exit), otherwise the value of x
