Returns an associative array of all of the values of the given array data. The values will be indexed in consecutive integers counting up from 1 in the order that the indexes of the values were added to the array with the resolution operator "->".
Example:
@values = %arrayGetValues( @room->mobiles )
for( @i = 1; @i <= %arrayGetSize( @values ); @i += 1 ) { %echo( "Value: " @values->@i ) } endfor |