flatten

From Bohemia Interactive Community
Revision as of 16:17, 3 December 2020 by R3vo (talk | contribs) (examples)
Jump to navigation Jump to search
-wrong parameter ("arma3dev") defined!-[[:Category:Introduced with arma3dev version 2.01|2.01]]
Hover & click on the images for description

Description

Description:
Flattens an array.
Groups:
Arrays

Syntax

Syntax:
flatten array
Parameters:
array: Array
Return Value:
Array - Flattened array

Examples

Example 1:
flatten [ 1, [2], [[3]], [[[4]]] ];// Returns [1, 2, 3, 4]
Example 2:
flatten getUnitLoadout player;

Additional Information

See also:
arrayIntersect

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

[[Category:Introduced with arma3dev version 2.01]][[ Category: arma3dev: New Scripting Commands | FLATTEN]][[ Category: arma3dev: Scripting Commands | FLATTEN]]