Skip to content

Latest commit

 

History

History
78 lines (65 loc) · 2.42 KB

File metadata and controls

78 lines (65 loc) · 2.42 KB

Function: ArraySet

In a one-dimensional array, sets the elements in a specified index range to a value.

Useful for initializing an array after a call to arrayNew.

Method Signature

ArraySet(array=[modifiablearray], start=[any], end=[any], value=[any])

Arguments

Argument Type Required Description Default
array modifiablearray true The array to modify
start any true The starting index
end any true The ending index
value any true

Examples

Related