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

# Int

> 32-bit integer type in the FlexiLayout language for whole-number values, with arithmetic and comparison operators and an abs() method.

Integer type. Corresponds to a 32-digit integer.

## Methods

| Method           | Description                               |
| :--------------- | :---------------------------------------- |
| `Int abs( Int )` | Returns the absolute value of an integer. |

## Operators

| Operator                         | Description                                                                                                                                                                |
| :------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `-`                              | Changes the sign. Unary operator.                                                                                                                                          |
| `+`                              | Adds integers. Binary operator.                                                                                                                                            |
| `-`                              | Subtracts one integer from another. Binary operator.                                                                                                                       |
| `*`                              | Multiplies integers. Binary operator.                                                                                                                                      |
| `/`                              | Divides integers. Binary operator.                                                                                                                                         |
| `<`, `<=`, `>`, `>=`, `==`, `!=` | Operators of comparison: less than, less than or equal to, greater than, greater than or equal to, equal to, not equal to. Binary operators. Return a value of type Logic. |
