BIS fnc arrayPush: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Feature arma3|" to "{{Feature|arma3|")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Function|Comments=
{{Function|Comments=
____________________________________________________________________________________________


| arma2 |Game name=
| arma2 |Game name=
Line 7: Line 6:


|gr1= Arrays|GROUP1=
|gr1= Arrays|GROUP1=
____________________________________________________________________________________________


| This function adds an element to the end of an array and returns the array.<br>
| This function adds an element to the end of an array and returns the array.<br>
Line 13: Line 11:


{{Feature|arma3|Use [[append]] or [[pushBack]] instead.}} |DESCRIPTION=
{{Feature|arma3|Use [[append]] or [[pushBack]] instead.}} |DESCRIPTION=
____________________________________________________________________________________________


| [array, element] call [[BIS_fnc_arrayPush]] |SYNTAX=
| [array, element] call [[BIS_fnc_arrayPush]] |SYNTAX=
Line 22: Line 19:


| [[Array]] - modified ''array'' |RETURNVALUE=
| [[Array]] - modified ''array'' |RETURNVALUE=
____________________________________________________________________________________________


|x1= <code><nowiki>_newArray = [</nowiki>[0,1,2], 3] [[call]] [[BIS_fnc_arrayPush]]; {{codecomment|// _newArray is [0,1,2,3]}}</code> |EXAMPLE1=
|x1= <code><nowiki>_newArray = [</nowiki>[0,1,2], 3] [[call]] [[BIS_fnc_arrayPush]]; {{codecomment|// _newArray is [0,1,2,3]}}</code> |EXAMPLE1=


|x2= <code>_array = [0,1,2]; [_array, [3]] [[call]] [[BIS_fnc_arrayPush]]; {{codecomment|// _array is [0,1,2,[3]]}}</code> |EXAMPLE2=
|x2= <code>_array = [0,1,2]; [_array, [3]] [[call]] [[BIS_fnc_arrayPush]]; {{codecomment|// _array is [0,1,2,[3]]}}</code> |EXAMPLE2=
____________________________________________________________________________________________


| [[append]], [[pushBack]], [[BIS_fnc_arrayPushStack]] |SEEALSO=
| [[append]], [[pushBack]], [[BIS_fnc_arrayPushStack]] |SEEALSO=

Revision as of 23:43, 16 January 2021

Hover & click on the images for description

Description

Description:
This function adds an element to the end of an array and returns the array.
The array is passed by reference so changes inside the function will be reflected outside of it.
Arma 3
Use append or pushBack instead.
Execution:
call
Groups:
Arrays

Syntax

Syntax:
[array, element] call BIS_fnc_arrayPush
Parameters:
array: Array
element: Anything
Return Value:
Array - modified array

Examples

Example 1:
_newArray = [[0,1,2], 3] call BIS_fnc_arrayPush; // _newArray is [0,1,2,3]
Example 2:
_array = [0,1,2]; [_array, [3]] call BIS_fnc_arrayPush; // _array is [0,1,2,[3]]

Additional Information

See also:
appendpushBackBIS_fnc_arrayPushStack

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