ArrayIsDynamic
この関数は、配列が動的かどうかを確認します。 bool ArrayIsDynamic( const void& array[] // checked array ); パラメーター アレイ[…
この関数は、配列が動的かどうかを確認します。 bool ArrayIsDynamic( const void& array[] // checked array ); パラメーター アレイ[…
この関数は、指定された値で配列を埋めます。 void ArrayFill( void& array[], // array int start, // startin…
動的配列のバッファーを解放し、ゼロ次元のサイズを0に設定します。 void ArrayFree( void& array[] // array ); パラメーター アレイ[] [入力]動…
この関数は、同じ型の2つの配列を比較した結果を返します。単純な型の配列または複雑なオブジェクトのないカスタム構造、つまり、文字列、動的配列、クラス、およびその他の複雑なオブジェクトを持つ構造を含まないカスタム構造の比較に…
bool ArraySort(object array[ ], int count=WHOLE_ARRAY, int start=0, intsort_dir=MODE_ASCEND) Sorts nume…
int ArraySize(object array[ ]) Returns the count of elements contained in the array. For a one-dimensio…
bool ArraySetAsSeries(object array[ ], bool set) Sets indexing direction of the array. If the set param…
int ArrayResize(object array[ ], int new_size) Sets a new size for the first dimension. If executed suc…
int ArrayRange(object array[ ], int range_index) Returns the count of elements in the given dimension o…
int ArrayMinimum(object array[ ], int count=WHOLE_ARRAY, int start=0) Searches for the element with min…