multiarray

Functions and types for working with multidimensional arrays.

Summary
multiarrayFunctions and types for working with multidimensional arrays.
Types
ArrayBoolean2DA two-dimensional array of Booleans.
ArrayBoolean3DA three-dimensional array of Booleans.
ArrayNumber2DA two-dimensional array of Numbers.
ArrayNumber3DA three-dimensional array of Numbers.
ArrayString2DA two-dimensional array of Strings.
ArrayString3DA three-dimensional array of Strings.
Functions
makeBoolean2DCreate a new ArrayBoolean2D with the given number of rows and columns.
makeBoolean3DCreate a new ArrayBoolean3D with the given number of rows, columns, and depth.
makeNumber2DCreate a new ArrayNumber2D with the given number of rows and columns.
makeNumber3DCreate a new ArrayNumber3D with the given number of rows, columns, and depth.
makeString2DCreate a new ArrayString2D with the given number of rows and columns.
makeString3DCreate a new ArrayString3D with the given number of rows, columns, and depth.

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

FUNCTION makeBoolean2D( rows,
columns: Number): ArrayBoolean2D

Create a new ArrayBoolean2D with the given number of rows and columns.

makeBoolean3D

FUNCTION makeBoolean3D( rows,
 columns,
depth: Number): ArrayBoolean3D

Create a new ArrayBoolean3D with the given number of rows, columns, and depth.

makeNumber2D

FUNCTION makeNumber2D( rows,
columns: Number,
value: Number DEFAULT): ArrayNumber2D

Create a new ArrayNumber2D with the given number of rows and columns.

makeNumber3D

FUNCTION makeNumber3D( rows,
 columns,
depth: Number): ArrayNumber3D

Create a new ArrayNumber3D with the given number of rows, columns, and depth.

makeString2D

FUNCTION makeString2D( rows,
columns: Number): ArrayString2D

Create a new ArrayString2D with the given number of rows and columns.

makeString3D

FUNCTION makeString3D( rows,
 columns,
depth: Number): ArrayString3D

Create a new ArrayString3D with the given number of rows, columns, and depth.

TRUE or FALSE.
Floating point number with 34 decimal digits of precision.
Unicode string.
FUNCTION makeBoolean2D( rows,
columns: Number): ArrayBoolean2D
Create a new ArrayBoolean2D with the given number of rows and columns.
A two-dimensional array of Booleans.
FUNCTION makeBoolean3D( rows,
 columns,
depth: Number): ArrayBoolean3D
Create a new ArrayBoolean3D with the given number of rows, columns, and depth.
A three-dimensional array of Booleans.
FUNCTION makeNumber2D( rows,
columns: Number,
value: Number DEFAULT): ArrayNumber2D
Create a new ArrayNumber2D with the given number of rows and columns.
A two-dimensional array of Numbers.
FUNCTION makeNumber3D( rows,
 columns,
depth: Number): ArrayNumber3D
Create a new ArrayNumber3D with the given number of rows, columns, and depth.
A three-dimensional array of Numbers.
FUNCTION makeString2D( rows,
columns: Number): ArrayString2D
Create a new ArrayString2D with the given number of rows and columns.
A two-dimensional array of Strings.
FUNCTION makeString3D( rows,
 columns,
depth: Number): ArrayString3D
Create a new ArrayString3D with the given number of rows, columns, and depth.
A three-dimensional array of Strings.
Close