pushBackUnique: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\{\{GameCategory\|(arma[0123])\|[ _]?New[ _]Scripting[ _]Commands[ _]List\}\}" to "{{GameCategory|$1|New Scripting Commands}}")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Command|Comments=
{{Command|Comments=
____________________________________________________________________________________________


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


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


| Adds element to the back of the given array but only if it is unique to the array. The index of the added element is returned upon success, otherwise -1. This command modifies the original array.
| Adds element to the back of the given array but only if it is unique to the array. The index of the added element is returned upon success, otherwise -1. This command modifies the original array.
{{Informative|Adding string elements is '''case sensitive'''.}}|DESCRIPTION=
{{Informative|Adding string elements is '''case sensitive'''.}}|DESCRIPTION=
____________________________________________________________________________________________


| array '''pushBackUnique''' element|SYNTAX=
| array '''pushBackUnique''' element|SYNTAX=
Line 20: Line 17:


| [[Number]] - index of inserted element or -1|RETURNVALUE=
| [[Number]] - index of inserted element or -1|RETURNVALUE=
____________________________________________________________________________________________
|x1= <code>_arr = [1,2,3];
|x1= <code>_arr = [1,2,3];
Line 28: Line 24:
_index = _arr [[pushBackUnique]] 4;
_index = _arr [[pushBackUnique]] 4;
[[hint]] [[str]] [_index, _arr]; //[3,[1,2,3,4]]</code> |EXAMPLE2=
[[hint]] [[str]] [_index, _arr]; //[3,[1,2,3,4]]</code> |EXAMPLE2=
____________________________________________________________________________________________


| [[pushBack]], [[select]], [[set]], [[resize]], [[reverse]], [[count]], [[find]], [[in]], [[forEach]], [[deleteAt]], [[deleteRange]], [[append]], [[sort]], [[arrayIntersect]], [[apply]], [[BIS_fnc_arrayPushStack]], [[BIS_fnc_arrayPush]] |SEEALSO=
| [[pushBack]], [[select]], [[set]], [[resize]], [[reverse]], [[count]], [[find]], [[in]], [[forEach]], [[deleteAt]], [[deleteRange]], [[append]], [[sort]], [[arrayIntersect]], [[apply]], [[BIS_fnc_arrayPushStack]], [[BIS_fnc_arrayPush]] |SEEALSO=

Revision as of 03:16, 17 January 2021

Hover & click on the images for description

Description

Description:
Adds element to the back of the given array but only if it is unique to the array. The index of the added element is returned upon success, otherwise -1. This command modifies the original array.
Adding string elements is case sensitive.
Groups:
Arrays

Syntax

Syntax:
array pushBackUnique element
Parameters:
array: Array
element: Anything
Return Value:
Number - index of inserted element or -1

Examples

Example 1:
_arr = [1,2,3]; _index = _arr pushBackUnique 3; hint str [_index, _arr]; //[-1,[1,2,3]]
Example 2:
_arr = [1,2,3]; _index = _arr pushBackUnique 4; hint str [_index, _arr]; //[3,[1,2,3,4]]

Additional Information

See also:
pushBackselectsetresizereversecountfindinforEachdeleteAtdeleteRangeappendsortarrayIntersectapplyBIS_fnc_arrayPushStackBIS_fnc_arrayPush

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