Go to: Synopsis. Return value. MEL examples.
int floatArrayRemoveAtIndex(int $index, float[] $list)
None
Variable Name | Variable Type | Description |
---|---|---|
$index | int | The index of the element to remove from $list. |
$list | float[] | A list of float values. |
float $array1[] = { 1.0, 2.0, 3.0 }; // Result: 1 2 3 // floatArrayRemoveAtIndex(1, $array1); // Result: 1 // print $array1; // Result: 1 3 //