BIS fnc consolidateArray: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (template:command argument fix)
m (Some wiki formatting)
 
(28 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{RV|type=function


{{Function|= Comments
|game1= arma3
____________________________________________________________________________________________
|version1= 0.76


| arma3 |= Game name
|gr1= Arrays


|0.76|= Game version
|descr= Finds duplicates in the given array of anything and consolidates them into an array of sub-arrays
____________________________________________________________________________________________


|Finds duplicities in the given array of anything and consolidates them into an array of sub-arrays |DESCRIPTION=
|s1= array call [[BIS_fnc_consolidateArray]]
____________________________________________________________________________________________


| array call [[BIS_fnc_consolidateArray]] |SYNTAX=
|p1= array: [[Array]] - array of anything


|p1= array: [[Array]] - array of anything |PARAMETER1=
|r1= [[Array]] - array of sub-arrays in format [<nowiki/>[value, count],...], where:
* value: [[Anything]] - consolidated element
* count: [[Number]] - occurrence count


| [[Array]] - array of sub-arrays in format <nowiki>[</nowiki>[value, count],...], where:
|x1= <sqf>["apple","apple","pear","pear","apple"] call BIS_fnc_consolidateArray; // return: [["apple",3],["pear",2]]</sqf>
* value: [[Anything]] - consolidated element
* count: [[Number]] - occurrence count|RETURNVALUE=
____________________________________________________________________________________________


|x1= <code>["apple","apple","pear","pear","apple"] [[call]] [[BIS_fnc_consolidateArray]]; // Return: <nowiki>[</nowiki>["apple",3],["pear",2]]</code> |=
|x2= <sqf>["apple","apple",1,1,nil,nil] call BIS_fnc_consolidateArray; // return: [["apple",2],[1,2],[any,2]]</sqf>
|x2= <code>["apple","apple",1,1,[[nil]],[[nil]]] [[call]] [[BIS_fnc_consolidateArray]]; // Return: <nowiki>[</nowiki>["apple",2],[1,2],[any,2]]</code> |=
____________________________________________________________________________________________
| |SEEALSO=


|seealso=
}}
}}
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: Arrays|{{uc:consolidateArray}}]]
[[Category:Functions|{{uc:consolidateArray}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:consolidateArray}}]]

Latest revision as of 14:58, 13 July 2022

Hover & click on the images for description

Description

Description:
Finds duplicates in the given array of anything and consolidates them into an array of sub-arrays
Execution:
call
Groups:
Arrays

Syntax

Syntax:
array call BIS_fnc_consolidateArray
Parameters:
array: Array - array of anything
Return Value:
Array - array of sub-arrays in format [[value, count],...], where:
  • value: Anything - consolidated element
  • count: Number - occurrence count

Examples

Example 1:
["apple","apple","pear","pear","apple"] call BIS_fnc_consolidateArray; // return: [["apple",3],["pear",2]]
Example 2:
["apple","apple",1,1,nil,nil] call BIS_fnc_consolidateArray; // return: [["apple",2],[1,2],[any,2]]

Additional Information

See also:
See also needed

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