-: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Page creation)
(Add unary minus)
Line 20: Line 20:
____________________________________________________________________________________________
____________________________________________________________________________________________


|s2= arrayA [[-]] arrayB |Syntax 2=
|s2= [[-]] numberA |Syntax 2=


|p21 = arrayA: [[Array]] |Parameter 21=
|p21 = numberA: [[Number]] |Parameter 21=


|p22 = arrayB: [[Array]] |Parameter 22=
|r2= [[Number]] - the negative of ''numberA'' |Return value 2=
____________________________________________________________________________________________


|r2= [[Array]] |Return value 2=
|s3= arrayA [[-]] arrayB |Syntax 3=
 
|p41 = arrayA: [[Array]] |Parameter 41=
 
|p42 = arrayB: [[Array]] |Parameter 42=
 
|r3= [[Array]] |Return value 3=
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1 = <code>_result = 10 - 7; {{codecomment|// result is 3}}</code>|Example 1=
|x1= <code>_result = 10 - 7; {{codecomment|// result is 3}}</code> |Example 1=
 
|x2= <code>_numA = 4;
_numB = -_numA; {{codecomment|// result is -4}}
_numB = -_numB; {{codecomment|// result is  4}}</code> |Example 2=


|x2 = <code>_result = [1, 2, 2, [[player]], "String"] - [2, [[player]], [[player]], "String"]; {{codecomment|// _result is [1]}}</code>|=
|x3= <code>_result = [1, 2, 2, [[player]], "String"] - [2, [[player]], [[player]], "String"]; {{codecomment|// _result is [1]}}</code> |Example 3=


|x3 = <code>_result = [0, [0], <nowiki>[</nowiki>[0]]] - [0]; {{codecomment|// <nowiki>[</nowiki>[0],<nowiki>[</nowiki>[0]]]}}</code> |Example 3=
|x4= <code>_result = [0, [0], <nowiki>[</nowiki>[0]]] - [0]; {{codecomment|// <nowiki>[</nowiki>[0],<nowiki>[</nowiki>[0]]]}}</code> |Example 4=


|x4 = <code>_result = [0, [0], <nowiki>[</nowiki>[0]]] - <nowiki>[</nowiki>[0]]; {{codecomment|// [0,<nowiki>[</nowiki>[0]]] - Since {{arma3}}}}
|x5= <code>_result = [0, [0], <nowiki>[</nowiki>[0]]] - <nowiki>[</nowiki>[0]]; {{codecomment|// [0,<nowiki>[</nowiki>[0]]] - Since {{arma3}}}}
_result = [0, [0], <nowiki>[</nowiki>[0]]] - <nowiki>[</nowiki><nowiki>[</nowiki>[0]]]; {{codecomment|// [0,[0]] - Since {{arma3}}}}</code> |Example 4=
_result = [0, [0], <nowiki>[</nowiki>[0]]] - <nowiki>[</nowiki><nowiki>[</nowiki>[0]]]; {{codecomment|// [0,[0]] - Since {{arma3}}}}</code> |Example 5=
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 11:21, 7 February 2019

Hover & click on the images for description

Description

Description:
Subtracts an element from another. Template:Feature arma3
Groups:
Uncategorised

Syntax 1

Syntax:
numberA - numberB
Parameters:
numberA: Number
numberB: Number
Return Value:
Number

Syntax 2

Syntax:
- numberA
Parameters:
numberA: Number
Return Value:
Number - the negative of numberA

Syntax 3

Syntax:
arrayA - arrayB
Parameters:
arrayA: Array
arrayB: Array
Return Value:
Array

Examples

Example 1:
_result = 10 - 7; // result is 3
Example 2:
_numA = 4; _numB = -_numA; // result is -4 _numB = -_numB; // result is 4
Example 3:
_result = [1, 2, 2, player, "String"] - [2, player, player, "String"]; // _result is [1]
Example 4:
_result = [0, [0], [[0]]] - [0]; // [[0],[[0]]]
Example 5:
_result = [0, [0], [[0]]] - [[0]]; // [0,[[0]]] - Since Arma 3 _result = [0, [0], [[0]]] - [[[0]]]; // [0,[0]] - Since Arma 3

Additional Information

See also:
ArrayOperators

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