vector
vector(
g_value ...
)
=> a_vectorArray
Description
Returns a vector or array, filled with the arguments in the given order. The vector function is analogous to the list function.
A vector is implemented as a SKILL array.
Arguments
Value Returned
Examples
V = vector( 1 2 3 4 )
=> array[4]:33394440
V[0]
=> 1
V[3]
=> 4
Related Topics
Return to top