> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Floor

> Round a number downward to the nearest integer.

The **Floor** action returns the largest integer less than or equal to the
input.

## Inputs

| Input      | Type   | Required | Description         |
| ---------- | ------ | -------- | ------------------- |
| **Number** | Number | Yes      | The value to round. |

## Outputs

| Output      | Type   | Description                                 |
| ----------- | ------ | ------------------------------------------- |
| **Floored** | Number | The input rounded toward negative infinity. |

For example, `4.99` becomes `4`, while `-4.01` becomes `-5`.
