set: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (template:command argument fix) |
||
Line 8: | Line 8: | ||
| Changes the element at the given (zero-based) index of the [[Array|array]]. | | Changes the element at the given (zero-based) index of the [[Array|array]]. | ||
<br>If the element does not exist, [[resize]] index+1 is called to create it. |= | <br>If the element does not exist, [[resize]] index+1 is called to create it. |DESCRIPTION= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| array '''set''' [index, value] |= | | array '''set''' [index, value] |SYNTAX= | ||
|p1= array: [[Array]] |= | |p1= array: [[Array]] |PARAMETER1= | ||
|p2= [index, value]: [[Array]] |= | |p2= [index, value]: [[Array]] |PARAMETER2= | ||
|p3= index: [[Number]] |= | |p3= index: [[Number]] |PARAMETER3= | ||
|p4= value: [[Anything]] |= | |p4= value: [[Anything]] |PARAMETER4= | ||
| [[Nothing]] |= | | [[Nothing]] |RETURNVALUE= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|x1= <code>_arrayOne [[set]] [0, "Hello"];</code> |= | |x1= <code>_arrayOne [[set]] [0, "Hello"];</code> |EXAMPLE1= | ||
|x2= <code>_arrayTwo [[set]] <nowiki>[</nowiki>[[count]] _arrayTwo, "Bye"];</code> | |x2= <code>_arrayTwo [[set]] <nowiki>[</nowiki>[[count]] _arrayTwo, "Bye"];</code> | ||
appends "Bye" as last element to <tt>_arrayTwo</tt> |= | appends "Bye" as last element to <tt>_arrayTwo</tt> |EXAMPLE2= | ||
|x3= <code>_arrayThree [[set]] <nowiki>[</nowiki>([[count]] _arrayThree) - 1, 23];</code> | |x3= <code>_arrayThree [[set]] <nowiki>[</nowiki>([[count]] _arrayThree) - 1, 23];</code> | ||
replaces the last element of <tt>_arrayTwo</tt> with 23 |= | replaces the last element of <tt>_arrayTwo</tt> with 23 |EXAMPLE3= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| [[Array]], [[plus a]], [[valuea plus valueb]], [[a - b]], [[resize]], [[reverse]], [[select]], [[in]], [[find]], [[findIf]], [[toArray]], [[toString]], [[forEach]], [[count]], [[pushBack]], [[pushBackUnique]], [[apply]], [[deleteAt]], [[deleteRange]], [[append]], [[sort]], [[param]], [[params]], [[arrayIntersect]], [[splitString]], [[joinString]]|= | | [[Array]], [[plus a]], [[valuea plus valueb]], [[a - b]], [[resize]], [[reverse]], [[select]], [[in]], [[find]], [[findIf]], [[toArray]], [[toString]], [[forEach]], [[count]], [[pushBack]], [[pushBackUnique]], [[apply]], [[deleteAt]], [[deleteRange]], [[append]], [[sort]], [[param]], [[params]], [[arrayIntersect]], [[splitString]], [[joinString]]|SEEALSO= | ||
}} | }} |
Revision as of 14:46, 7 April 2019
Description
- Description:
- Changes the element at the given (zero-based) index of the array.
If the element does not exist, resize index+1 is called to create it. - Groups:
- Uncategorised
Syntax
- Syntax:
- array set [index, value]
- Parameters:
- array: Array
- [index, value]: Array
- index: Number
- value: Anything
- Return Value:
- Nothing
Examples
- Example 1:
_arrayOne set [0, "Hello"];
- Example 2:
_arrayTwo set [count _arrayTwo, "Bye"];
appends "Bye" as last element to _arrayTwo- Example 3:
_arrayThree set [(count _arrayThree) - 1, 23];
replaces the last element of _arrayTwo with 23
Additional Information
- See also:
- Arrayplus avaluea plus valueba - bresizereverseselectinfindfindIftoArraytoStringforEachcountpushBackpushBackUniqueapplydeleteAtdeleteRangeappendsortparamparamsarrayIntersectsplitStringjoinString
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
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint: Resistance version 1.75
- Operation Flashpoint: Resistance: New Scripting Commands
- Operation Flashpoint: Resistance: Scripting Commands
- Command Group: Uncategorised
- Scripting Commands OFP 1.99
- Scripting Commands OFP 1.96
- Scripting Commands ArmA
- Scripting Commands ArmA2
- Scripting Commands Arma 3
- Scripting Commands Take On Helicopters
- Command Group: Variables