Summary
AutoHotkey has two types of arrays related to them: object-based arrays and pseudo-arrays. An Array object contains a list or sequence of values which are addressed by their position within the array.
1
2
Arrays are often created by enclosing a list of values in brackets.
2
Autohotkey offers a few ways of defining and creating arrays.
3
NumPut() and NumGet() can be used to store/retrieve a collection of numbers in binary format.
1
According to
See more results on Neeva
Summaries from the best pages on the web
Summary
AutoHotkey has two types of arrays related to them: object-based arrays and pseudo-arrays. Object-based arrays are created using the Object function or the brace syntax, while pseudo-arrays are mostly conceptual and are space-saving. NumPut() and NumGet() can be used to store/retrieve a collection of numbers in binary format.
Arrays - Definition & Usage | AutoHotkey
autohotkey.com
Summary
An Array object contains a list or sequence of values.
Values are addressed by their position within the array (known as an array index ), where position 1 is the first element.
Arrays are often created by enclosing a list of values in brackets.
Array Object - Methods & Properties | AutoHotkey v2
autohotkey.com
Summary
An array is a container object that holds a number of values. In the following image you can see an array with size 10, the first element indexed 1 and the last element 10.
Autohotkey offers a few ways of defining and creating arrays.
AutoHotkey Tutorial => Creating and Initializing Simple Arrays
riptutorial.com