BIS fnc arrayUnShift: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Page filling)
m (Some wiki formatting)
 
(34 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Function|Comments=
{{RV|type=function
____________________________________________________________________________________________


| arma2 |Game name=
|game1= arma2
|version1= 1.00


|1.00|Game version=
|game2= arma2oa
____________________________________________________________________________________________
|version2= 1.50


| This function adds an element to the beginning of an array and returns the array.
|game3= tkoh
The array is passed by reference so changes inside the function will be reflected outside of it. |Description=
|version3= 1.00
____________________________________________________________________________________________


| [array, value] call [[BIS_fnc_arrayUnShift]] |Syntax=
|game4= arma3
|version4= 0.50


|p1= array: [[Array]] |Parameter 1=
|gr1= Arrays


|p2= value: [[Anything]] |Parameter 2=
|descr= This function adds an element to the beginning of an array and returns the array.
The array is passed by reference so changes inside the function will be reflected outside of it.


| [[Array]] - ''array'' reference |Return value=
|s1= [array, value] call [[BIS_fnc_arrayUnShift]]
____________________________________________________________________________________________


|x1= <code>_array = [2,3,4];
|p1= array: [[Array]]
[_array, 1] [[call]] [[BIS_fnc_arrayUnShift]]; {{codecomment|// _array is now [1,2,3,4]}}</code> |Example 1=


|x2= <code>_array = <nowiki>[</nowiki>[2,3,4], 1] [[call]] [[BIS_fnc_arrayUnShift]]; {{codecomment|// _array is now [1,2,3,4]}}</code> |Example 2=
|p2= value: [[Anything]]
____________________________________________________________________________________________


| [[BIS_fnc_arrayShift]], [[pushBack]], [[select]], [[set]] |See also=
|r1= [[Array]] - ''array'' reference
}}


<h3 style="display:none">Notes</h3>
|x1= <sqf>private _array = [2,3,4];
<dl class="command_description">
[_array, 1] call BIS_fnc_arrayUnShift; // _array is now [1,2,3,4]</sqf>
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|x2= <sqf>private _array = [[2,3,4], 1] call BIS_fnc_arrayUnShift; // _array is now [1,2,3,4]</sqf>
</dl>


<h3 style="display:none">Bottom Section</h3>
|seealso= [[BIS_fnc_arrayShift]] [[pushBack]] [[select]] [[set]]
[[Category:Functions|{{uc:arrayUnShift}}]]
}}
[[Category:Function Group: Arrays|{{uc:arrayUnShift}}]]
[[Category:{{Name|arma2}}: Functions|{{uc:arrayUnShift}}]]
[[Category:{{Name|arma2oa}}: Functions|{{uc:arrayUnShift}}]]
[[Category:{{Name|tkoh}}: Functions|{{uc:arrayUnShift}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:arrayUnShift}}]]

Latest revision as of 00:16, 13 July 2022

Hover & click on the images for description

Description

Description:
This function adds an element to the beginning of an array and returns the array. The array is passed by reference so changes inside the function will be reflected outside of it.
Execution:
call
Groups:
Arrays

Syntax

Syntax:
[array, value] call BIS_fnc_arrayUnShift
Parameters:
array: Array
value: Anything
Return Value:
Array - array reference

Examples

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

Additional Information

See also:
BIS_fnc_arrayShift pushBack select set

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