BIS fnc consolidateArray: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (GVI released sooner than 1.00, added 0.76. Source http://dev.arma3.com/post/spotrep-00009)
(docs)
Line 8: Line 8:
____________________________________________________________________________________________
____________________________________________________________________________________________


| <pre>/*
|Finds duplicities in the given array of anything and consolidates them into an array of sub-arrays |= Description
 
Description:
Finds duplicities in array of strings and consolidates it to the array of sub-arrays, where:
id 0: string
id 1: occurrence count
 
Syntax:
_cosolidated:array = _strings:array call BIS_fnc_consolidateArray;
 
Example:
[["apple",3],["pear",2]] = ["apple","apple","pear","pear","apple"] call BIS_fnc_consolidateArray;
*/
 
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_consolidateArray]]; --> |= Syntax
| array call [[BIS_fnc_consolidateArray]] |= Syntax


|p1= |= Parameter 1
|p1= array: [[Array]] - array of anything |= Parameter 1


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


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



Revision as of 00:04, 31 May 2017


Hover & click on the images for description

Description

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

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

Notes

Bottom Section