Difference between revisions of "RemoveVectorArrayElement"

From scripting
Jump to: navigation, search
(Created page with " global proc vector[] RemoveVectorArrayElement(vector $CurArr[],int $RemoveIndex) { vector $PR[]; int $PRCounter = 0; for ($p=0;$p<size($CurArr);$p++) { if ($p!=$Remo...")
 
(No difference)

Latest revision as of 19:52, 24 April 2017

global proc vector[] RemoveVectorArrayElement(vector $CurArr[],int $RemoveIndex) {
	vector $PR[];
	int $PRCounter = 0;
	for ($p=0;$p<size($CurArr);$p++) {
		if ($p!=$RemoveIndex) {
			$PR[$PRCounter] = $CurArr[$p];
			$PRCounter++;
		}
	}
  	return $PR;
}


More information on vectors and arrays, read pages 12-16 in YSYT.