flatten: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ |()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
m (Some wiki formatting)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma3dev
|game1= arma3
 
|version1= 2.02
|2.01


|gr1= Arrays
|gr1= Arrays


| Flattens an array.
|descr= Flattens an array.


| [[flatten]] array
|s1= [[flatten]] array


|p1= array: [[Array]]
|p1= array: [[Array]]


| [[Array]] - Flattened array
|r1= [[Array]] - flattened array
 
 
|x1= <code>[[flatten]] [ 1, [2], <nowiki>[[3]]</nowiki>, [[[4]]] ]; {{cc|Returns [1, 2, 3, 4]}}</code>
|x1= <sqf>flatten [1, [2], [[3]], [[[4]]]]; // returns [1, 2, 3, 4]</sqf>


|x2= <code>[[flatten]] [[getUnitLoadout]] [[player]];</code>
|x2= <sqf>flatten getUnitLoadout player;</sqf>


|seealso= [[arrayIntersect]]
|seealso= [[arrayIntersect]]
}}
}}

Latest revision as of 14:45, 5 May 2022

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:

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