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 "->". Retrieving the keys in this manner makes it possible to loop through the entries of the array until such time as a foreach loop is designed :)
Example:
@ordered = %arrayGetValues( )
@index = 0 while( @ordered->(@index += 1) !== null ) { echoto room all Value: %( @ordered->@index ) } endwhile |