BIS fnc arrayShuffle: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Undo revision 97824 by Zectbumo (talk) this will be corrected)
m (Remove informative note)
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{Function|= Comments
{{Function|= Comments
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma3 |= Game name
| arma3 |Game name=


|0.58|= Game version
|0.58|Game version=
____________________________________________________________________________________________
____________________________________________________________________________________________


| <pre>/*
| Return a new array with randomized order of elements from input array. |Description=
Description:
This returns a new array with randomized order of elements from input array
Parameters:
_this: ARRAY
Returns:
ARRAY
Example:
[1, 2, 3] call BIS_fnc_arrayShuffle
Returns: [2, 3, 1] (For example)
*/
 
//The container
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


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


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


| |= Return value
| [[Array]] - a new array instance |Return value=
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code></code> |=  
|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> |Example 1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| [[sort]], [[BIS_fnc_sortBy]], [[random]] |See also=
 
}}
}}


Line 50: Line 31:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Functions|{{uc:arrayShuffle}}]]
[[Category:Function Group: Arrays|{{uc:arrayShuffle}}]]
[[Category:Function Group: Arrays|{{uc:arrayShuffle}}]]
[[Category:Functions|{{uc:arrayShuffle}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:arrayShuffle}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:arrayShuffle}}]]

Revision as of 14:57, 29 May 2018

Hover & click on the images for description

Description

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

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], [3,1,2], [2,3,1], [1,3,2], [2,1,3] or [3,2,1]

Additional Information

See also:
sortBIS_fnc_sortByrandom

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