+: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " _+ " to "") |
Lou Montana (talk | contribs) m (Reverted edits by Lou Montana (talk) to last revision by R3vo) Tag: Rollback |
||
Line 1: | Line 1: | ||
{{Command|Comments= | {{Command|Comments= | ||
____________________________________________________________________________________________ | |||
| ofp |Game= | | ofp |Game= | ||
Line 11: | Line 13: | ||
|gr1= Math |GROUP1= | |gr1= Math |GROUP1= | ||
____________________________________________________________________________________________ | |||
| Add two numbers, concatenate two arrays or two strings, or duplicate an array. For arrays also see [[pushBack]] and [[append]]. | | Add two numbers, concatenate two arrays or two strings, or duplicate an array. For arrays also see [[pushBack]] and [[append]]. | ||
Line 17: | Line 21: | ||
* <tt>+ARRAY</tt> clones every element, so if the array is multi-dimensional, the created copy contains no references ({{Wikipedia|Object copying#Deep copy|deep copy}}). | * <tt>+ARRAY</tt> clones every element, so if the array is multi-dimensional, the created copy contains no references ({{Wikipedia|Object copying#Deep copy|deep copy}}). | ||
See [[#Examples|Example 6]].}} |Description= | See [[#Examples|Example 6]].}} |Description= | ||
____________________________________________________________________________________________ | |||
| numberA [[+]] numberB |Syntax= | | numberA [[+]] numberB |Syntax= | ||
Line 24: | Line 30: | ||
| [[Number]] - the sum of ''numberA'' and ''numberB'' |Return Value= | | [[Number]] - the sum of ''numberA'' and ''numberB'' |Return Value= | ||
____________________________________________________________________________________________ | |||
|s2= [[+]] numberA |Alternative Syntax= | |s2= [[+]] numberA |Alternative Syntax= | ||
Line 29: | Line 37: | ||
|r2= [[Number]] - returns ''numberA'' |Alternative Return Value= | |r2= [[Number]] - returns ''numberA'' |Alternative Return Value= | ||
____________________________________________________________________________________________ | |||
|s3= arrayA [[+]] arrayB |Alternative Syntax 3= | |s3= arrayA [[+]] arrayB |Alternative Syntax 3= | ||
Line 36: | Line 46: | ||
|r3= [[Array]] - a new array filled with ''arrayA'' and ''arrayB'' elements, in that order. |Alternative 3 Return Value= | |r3= [[Array]] - a new array filled with ''arrayA'' and ''arrayB'' elements, in that order. |Alternative 3 Return Value= | ||
____________________________________________________________________________________________ | |||
|s4= stringA [[+]] stringB |Alternative Syntax 4= | |s4= stringA [[+]] stringB |Alternative Syntax 4= | ||
Line 43: | Line 55: | ||
|r4= [[String]] - a string concatenating ''stringA'' and ''stringB'' |Alternative 4 Return Value= | |r4= [[String]] - a string concatenating ''stringA'' and ''stringB'' |Alternative 4 Return Value= | ||
____________________________________________________________________________________________ | |||
|s5= [[+]] arrayA |Alternative Syntax 5= | |s5= [[+]] arrayA |Alternative Syntax 5= | ||
Line 48: | Line 62: | ||
|r5= [[Array]] - a new instance of array filled with same items. |Alternative 5 Return Value= | |r5= [[Array]] - a new instance of array filled with same items. |Alternative 5 Return Value= | ||
____________________________________________________________________________________________ | |||
|x1= <code> 5 [[+]] 3; {{codecomment|// returns 8}} | |x1= <code> 5 [[+]] 3; {{codecomment|// returns 8}} | ||
-5 [[+]] -3; {{codecomment|// returns -8}}</code> |Example 1= | -5 [[+]] -3; {{codecomment|// returns -8}}</code> |Example 1= | ||
Line 77: | Line 93: | ||
_array2 [[select]] 0 [[set]] [0, "oops"]; | _array2 [[select]] 0 [[set]] [0, "oops"]; | ||
[[hint]] [[str]] _subArray; {{cc|[1, 2, 3]}}</code> |Example 6= | [[hint]] [[str]] _subArray; {{cc|[1, 2, 3]}}</code> |Example 6= | ||
____________________________________________________________________________________________ | |||
| [[Operators]], [[pushBack]], [[append]] |See Also= | | [[Operators]], [[pushBack]], [[append]] |See Also= | ||
}} | }} |
Revision as of 02:12, 25 September 2020
Description
- Description:
- Add two numbers, concatenate two arrays or two strings, or duplicate an array. For arrays also see pushBack and append.
- Groups:
- Math
Syntax 1
- Syntax:
- numberA + numberB
- Parameters:
- numberA: Number
- numberB: Number
- Return Value:
- Number - the sum of numberA and numberB
Syntax 2
Syntax 3
- Syntax:
- arrayA + arrayB
- Parameters:
- arrayA: Array
- arrayB: Array
- Return Value:
- Array - a new array filled with arrayA and arrayB elements, in that order.
Syntax 4
- Syntax:
- stringA + stringB
- Parameters:
- stringA: String
- stringB: String
- Return Value:
- String - a string concatenating stringA and stringB
Syntax 5
- Syntax:
- + arrayA
- Parameters:
- arrayA: Array
- Return Value:
- Array - a new instance of array filled with same items.
Examples
- Example 1:
5 + 3; // returns 8 -5 + -3; // returns -8
- Example 2:
+ 2; // returns 2 + -7; // returns -7
- Example 3:
_arrayA = [1,2,3]; _arrayB = [3,4,5]; _arrayAB = _arrayA + _arrayB; // _arrayAB = [1,2,3,3,4,5] // _arrayA and _arrayB remain unchanged
- Example 4:
_result = "Hello" + " " + "there"; // "Hello there"
- Example 5:
_arrayA = [1,2,3]; _arrayB = +_arrayA; _arrayB set [0, 99]; // _arrayA = [1,2,3], _arrayB = [99,2,3]
- Example 6:
- Shallow copy with ARRAY + []:
private _subArray = [1, 2, 3]; private _array1 = [_subArray, 1, 2, 3]; private _array2 = _array1 + []; _array2 select 0 set [0, "oops"]; hint str _subArray; // ["oops", 2, 3]
Deep copy with +ARRAY:private _subArray = [1, 2, 3]; private _array1 = [_subArray, 1, 2, 3]; private _array2 = +_array1; _array2 select 0 set [0, "oops"]; hint str _subArray; // [1, 2, 3]
Additional Information
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
Bottom Section
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Command Group: Math
- Scripting Commands OFP 1.99
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.46
- Scripting Commands Armed Assault
- Scripting Commands Arma 2
- Scripting Commands Arma 3