BIS fnc arrayUnShift: Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
Lou Montana (talk | contribs) (Page filling) |
||
Line 1: | Line 1: | ||
{{Function|Comments= | |||
{{Function|= | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| arma2 | | | arma2 |Game name= | ||
|1.00| | |1.00|Game version= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | | 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. |Description= | |||
____________________________________________________________________________________________ | |||
| [array, value] call [[BIS_fnc_arrayUnShift]] |Syntax= | |||
|p1= array: [[Array]] |Parameter 1= | |||
|p2= value: [[Anything]] |Parameter 2= | |||
| [[Array]] - ''array'' reference |Return value= | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| < | |x1= <code>_array = [2,3,4]; | ||
[_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= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | | | [[BIS_fnc_arrayShift]], [[pushBack]], [[select]], [[set]] |See also= | ||
}} | }} | ||
Line 50: | Line 37: | ||
<h3 style="display:none">Bottom Section</h3> | <h3 style="display:none">Bottom Section</h3> | ||
[[Category:Functions|{{uc:arrayUnShift}}]] | |||
[[Category:Function Group: Arrays|{{uc:arrayUnShift}}]] | [[Category:Function Group: Arrays|{{uc:arrayUnShift}}]] | ||
[[Category:{{Name|arma2}}: Functions|{{uc:arrayUnShift}}]] | [[Category:{{Name|arma2}}: Functions|{{uc:arrayUnShift}}]] | ||
[[Category:{{Name|arma2oa}}: Functions|{{uc:arrayUnShift}}]] | [[Category:{{Name|arma2oa}}: Functions|{{uc:arrayUnShift}}]] | ||
[[Category:{{Name|tkoh}}: Functions|{{uc:arrayUnShift}}]] | [[Category:{{Name|tkoh}}: Functions|{{uc:arrayUnShift}}]] | ||
[[Category:{{Name|arma3}}: Functions|{{uc:arrayUnShift}}]] | [[Category:{{Name|arma3}}: Functions|{{uc:arrayUnShift}}]] |
Revision as of 00:28, 6 June 2018
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:
- Uncategorised
Syntax
- Syntax:
- [array, value] call BIS_fnc_arrayUnShift
- Parameters:
- array: Array
- value: Anything
- Return Value:
- Array - array reference
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