Functions and types for working with multidimensional arrays.
multiarray | Functions and types for working with multidimensional arrays. |
Types | |
ArrayBoolean2D | A two-dimensional array of Booleans. |
ArrayBoolean3D | A three-dimensional array of Booleans. |
ArrayNumber2D | A two-dimensional array of Numbers. |
ArrayNumber3D | A three-dimensional array of Numbers. |
ArrayString2D | A two-dimensional array of Strings. |
ArrayString3D | A three-dimensional array of Strings. |
Functions | |
makeBoolean2D | Create a new ArrayBoolean2D with the given number of rows and columns. |
makeBoolean3D | Create a new ArrayBoolean3D with the given number of rows, columns, and depth. |
makeNumber2D | Create a new ArrayNumber2D with the given number of rows and columns. |
makeNumber3D | Create a new ArrayNumber3D with the given number of rows, columns, and depth. |
makeString2D | Create a new ArrayString2D with the given number of rows and columns. |
makeString3D | Create a new ArrayString3D with the given number of rows, columns, and depth. |
A two-dimensional array of Booleans.
A three-dimensional array of Booleans.
A two-dimensional array of Numbers.
A three-dimensional array of Numbers.
A two-dimensional array of Strings.
A three-dimensional array of Strings.
FUNCTION makeBoolean2D( rows, columns: Number ): ArrayBoolean2D
Create a new ArrayBoolean2D with the given number of rows and columns.
FUNCTION makeBoolean3D( rows, columns, depth: Number ): ArrayBoolean3D
Create a new ArrayBoolean3D with the given number of rows, columns, and depth.
FUNCTION makeNumber2D( rows, columns: Number, value: Number DEFAULT ): ArrayNumber2D
Create a new ArrayNumber2D with the given number of rows and columns.
FUNCTION makeNumber3D( rows, columns, depth: Number ): ArrayNumber3D
Create a new ArrayNumber3D with the given number of rows, columns, and depth.
FUNCTION makeString2D( rows, columns: Number ): ArrayString2D
Create a new ArrayString2D with the given number of rows and columns.
FUNCTION makeString3D( rows, columns, depth: Number ): ArrayString3D
Create a new ArrayString3D with the given number of rows, columns, and depth.
Create a new ArrayBoolean2D with the given number of rows and columns.
FUNCTION makeBoolean2D( rows, columns: Number ): ArrayBoolean2D
Create a new ArrayBoolean3D with the given number of rows, columns, and depth.
FUNCTION makeBoolean3D( rows, columns, depth: Number ): ArrayBoolean3D
Create a new ArrayNumber2D with the given number of rows and columns.
FUNCTION makeNumber2D( rows, columns: Number, value: Number DEFAULT ): ArrayNumber2D
Create a new ArrayNumber3D with the given number of rows, columns, and depth.
FUNCTION makeNumber3D( rows, columns, depth: Number ): ArrayNumber3D
Create a new ArrayString2D with the given number of rows and columns.
FUNCTION makeString2D( rows, columns: Number ): ArrayString2D
Create a new ArrayString3D with the given number of rows, columns, and depth.
FUNCTION makeString3D( rows, columns, depth: Number ): ArrayString3D