get_values [function]
get_values( iterable var )
returns an array of values found in the iterable object var
or returns null and emits a warning on failure
var
must be an iterable object (has interface OP_CONVERT defined and successfully handles a CONVOP_TOITER request) - such objects arearray
,dict
,map
andio_dir
get_values( [5,7,0] ); // returns [5,7,0] get_values( {b=5,a=2} ); // returns [5,2]