Array Functions
Function |
Description |
Create a new array with a specified number of empty items. |
|
Create a new array with a specified number of empty items of a specified size (in bytes) of each item. |
|
Deallocates and frees all array items and the array itself. |
|
Extend (grow) an array and add new empty items. |
|
Get the address of an array item specified by the item index. |
|
Get the stored length of an array item. |
|
Add an integer value for every item of a QWORD array. |
|
Write byte data of a specified length to an array item. |
|
Write a zero terminated text string to an array item. |
|
Multiply an integer value for every item of a QWORD array. |
|
Subtract an integer value for every item of a QWORD array. |
|
Create an array by loading a text file. Each line of the text file is set as a new item in the array. |
|
Create an array by loading items array from memory. Each line of the text in memory is set as a new item in the array. |
|
Resize array (reallocate array memory) to a different item count. |
|
Saves all array items to a file. |
|
Write the array items, separated with a carriage return and line feed (CRLF), to a pre-allocated memory buffer. |
|
Get the total count of all array items in an array. |
|
Get the total amount of memory to store the whole array and its items. |
|
Truncate (shrink) an array and free any excess items. |