Arrays
- Function ArrayDim(Byref id)
Returns the number of dimensions in an array.
See also
- 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
- 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
- Function ArraySize(Byref id, array_dim)
Returns the number of elements in the given dimension of an array.
See also
- 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
- 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
- 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
- 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
- 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.
See also
- 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
- 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
- Sub ArrayFill(ByRef src, fdata)
Fills all the elements in an array with the value in fdata.
See also
- 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
- 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
- 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
- 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