bool ArrayGetAsSeries(object array[ ])
Returns TRUE if array is organized as a series array (array elements are
indexed from the last to the first one), otherwise returns FALSE.
もし、配列が直列配列(配列の要素は、古い物から新しい物に向けてインデックスされている)としてまとまっている場合は、TRUE を返します。そうでなければ、FALSE
を返します。
Parameters:
パラメータ:
array[] - Array to be checked.
チェックされる配列。
Sample:
サンプル:
if(ArrayGetAsSeries(array1)==true)
Print("array1 is indexed as a series array");
else
Print("array1 is indexed normally (from left to right)");
|