Arrays

Function ArrayDim(Byref id)

Returns the number of dimensions in an array.


Function StringArrayDim(Byref id$)

This function is exists to be internally called by the runtime but should not be called directly.

Use ArrayDim()

See also

ArrayDim()


Function NumberArrayDim(Byref id)

This function is exists to be internally called by the runtime but should not be called directly.

Use ArrayDim()

See also

ArrayDim()


Function ArraySize(Byref id, array_dim)

Returns the number of elements in the given dimension of an array.


Function StringArraySize(Byref id$, array_dim)

This function is exists to be internally called by the runtime but should not be called directly.

Use ArraySize()

See also

ArraySize()


Function NumberArraySize(Byref id, array_dim)

This function is exists to be internally called by the runtime but should not be called directly.

Use ArraySize()

See also

ArraySize()


Sub NumberArrayCopy(ByRef src, ByRef dst)

This function is exists to be internally called by the runtime but should not be called directly.

Use ArrayCopy()

See also

ArrayCopy()


Sub StringArrayCopy(ByRef src$, ByRef dst$)

This function is exists to be internally called by the runtime but should not be called directly.

Use ArrayCopy()

See also

ArrayCopy()


Sub ArrayCopy(ByRef src, ByRef dst)

Copies the contents of src array to dst array.

Note: This function is a special case in that it can take any type for src or dst.


Sub NumberArrayFill(ByRef src, fdata)

This function is exists to be internally called by the runtime but should not be called directly.

Use ArrayFill()

See also

ArrayFill()


Sub StringArrayFill(ByRef src$, fdata$)

This function is exists to be internally called by the runtime but should not be called directly.

Use ArrayFill()

See also

ArrayFill()


Sub ArrayFill(ByRef src, fdata)

Fills all the elements in an array with the value in fdata.


Function TypeArrayDim(Byref id as empty)

This function is exists to be internally called by the runtime but should not be called directly.

Use ArrayDim()

See also

ArrayDim()


Function TypeArraySize(Byref id as empty, array_dim)

This function is exists to be internally called by the runtime but should not be called directly.

Use ArraySize()

See also

ArraySize()


Sub TypeArrayCopy(ByRef src as empty, ByRef dst as empty)

This function is exists to be internally called by the runtime but should not be called directly.

Use ArrayCopy()

See also

ArrayCopy()


Sub TypeArrayFill(ByRef src as empty, fdata as empty)

This function is exists to be internally called by the runtime but should not be called directly.

Use ArrayFill()

See also

ArrayFill()