deleteAt: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
(Expanded comment by note about how it came into being)
Line 44: Line 44:
is almost 60x faster than
is almost 60x faster than
<code>_array = _array - [_array select 0]</code>
<code>_array = _array - [_array select 0]</code>
(Tested with an array of 10.000 strings, iterating through it using a for-from-to-do loop)

Revision as of 00:51, 15 October 2014

Hover & click on the images for description

Description

Description:
Removes array element at the given index and returns removed element (modifies the original array, just like resize or set).
Groups:
Uncategorised

Syntax

Syntax:
array deleteAt index
Parameters:
array: Array
index: Number
Return Value:
Anything

Examples

Example 1:
_arr = [1,2,3]; _rem = _arr deleteAt 1; hint str [_rem, _arr]; //[2,[1,3]]

Additional Information

See also:
deleteRangesetresizeselectinfindtoArraytoStringforEachcountpushBack

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section


_array deleteAt 0 is almost 60x faster than _array = _array - [_array select 0] (Tested with an array of 10.000 strings, iterating through it using a for-from-to-do loop)