BIS fnc arrayUnShift: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Undo revision 237115 by R3vo (talk))
Tag: Undo
m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ :\\\-\/|()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
Line 23: Line 23:
|x2= <code>_array = [<nowiki/>[2,3,4], 1] [[call]] [[BIS_fnc_arrayUnShift]]; {{codecomment|// _array is now [1,2,3,4]}}</code>
|x2= <code>_array = [<nowiki/>[2,3,4], 1] [[call]] [[BIS_fnc_arrayUnShift]]; {{codecomment|// _array is now [1,2,3,4]}}</code>


| [[BIS_fnc_arrayShift]], [[pushBack]], [[select]], [[set]]
|seealso= [[BIS_fnc_arrayShift]], [[pushBack]], [[select]], [[set]]
}}
}}



Revision as of 01:24, 17 February 2021

Hover & click on the images for description

Description

Description:
Description needed
Execution:
call
Groups:
Arrays

Syntax

Syntax:
Syntax needed
Parameters:
array: Array
value: Anything
Return Value:
Return value needed

Examples

Example 1:
_array = [2,3,4]; [_array, 1] call BIS_fnc_arrayUnShift; // _array is now [1,2,3,4]
Example 2:
_array = [[2,3,4], 1] call BIS_fnc_arrayUnShift; // _array is now [1,2,3,4]

Additional Information

See also:
BIS_fnc_arrayShiftpushBackselectset

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