> ## 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.

# IntArray

> Array of integer values in the FlexiLayout language, with constructors and methods to count, access, add, insert, and delete Int elements.

Array of integers.

## Constructors

| Constructor                | Description                                                                  |
| :------------------------- | :--------------------------------------------------------------------------- |
| `IntArray IntArray()`      | Creates an empty array.                                                      |
| `IntArray IntArray( Int )` | Constructor with parameter Int. Creates an array consisting of this integer. |

## Methods

| **Methods**                              | **Description**                               |
| ---------------------------------------- | --------------------------------------------- |
| `Int Count()`                            | Returns the number of elements in the array.  |
| `Int GetAt( Int )`                       | Returns the element with the specified index. |
| `Void Add( Int )`                        | Adds an integer to the end of the array.      |
| `Void Add( IntArray )`                   | Adds another array to the end of the array.   |
| `Void InsertAt( Int index, Int number )` | Adds an integer number to position index.     |
| `Void DeleteAll()`                       | Deletes all elements of the array.            |
| `Void DeleteAt( Int index )`             | Deletes the element in position index.        |

## Operators

| **Operator** | **Description**                                    |
| :----------- | :------------------------------------------------- |
| `<<`         | Binary operator that adds an integer to the array. |
