Lucee Function Reference
arraydeleteat()
Deletes an element from an array and resizes the array so that the deleted element doesn't leave a gap.
Example
arraydeleteat(array array,number position):boolean
Category
array
Arguments
The arguments for this function are set. You can not use other arguments except the following ones.
Name | Type | Required | Description |
---|---|---|---|
array | array | Yes | The array that the element will be deleted from. |
position | number | Yes | The numeric position of the element. Remember that CFML arrays start at 1 not 0. |