BIS fnc arrayShuffle: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[[cC]ategory:[fF]unctions\|\{\{uc:[a-z A-Z_]*\}\}\]\]" to "")
m (Some wiki formatting)
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=function
{{RV|type=function


| arma3
|game1= arma3
 
|version1= 0.58
|0.58


|gr1= Arrays
|gr1= Arrays


| Return a new array with randomized order of elements from input array.
|descr= Return a new array with randomized order of elements from input array.


| array call [[BIS_fnc_arrayShuffle]]
|s1= array call [[BIS_fnc_arrayShuffle]]


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


| [[Array]] - a new array instance
|r1= [[Array]] - a new array instance


|x1= <code>[1,2,3] [[call]] [[BIS_fnc_arrayShuffle]]; {{codecomment|// can return '''[1,2,3]''', [3,1,2], [2,3,1], [1,3,2], [2,1,3] or [3,2,1]}}</code>
|x1= <sqf>[1,2,3] call BIS_fnc_arrayShuffle; // can return [1,2,3] (the original order), [3,1,2], [2,3,1], [1,3,2], [2,1,3] or [3,2,1]</sqf>


| [[sort]], [[BIS_fnc_sortBy]], [[random]]
|seealso= [[sort]] [[BIS_fnc_sortBy]] [[random]]
}}
}}
[[Category:{{Name|arma3}}: Functions|{{uc:arrayShuffle}}]]

Latest revision as of 00:13, 13 July 2022

Hover & click on the images for description

Description

Description:
Return a new array with randomized order of elements from input array.
Execution:
call
Groups:
Arrays

Syntax

Syntax:
array call BIS_fnc_arrayShuffle
Parameters:
array: Array
Return Value:
Array - a new array instance

Examples

Example 1:
[1,2,3] call BIS_fnc_arrayShuffle; // can return [1,2,3] (the original order), [3,1,2], [2,3,1], [1,3,2], [2,1,3] or [3,2,1]

Additional Information

See also:
sort BIS_fnc_sortBy random

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