VectorInt.op_Subtraction Operator

Overload List

#SignatureDescription
1VectorInt op_Subtraction(TVecInt Left, VectorInt Right)Subtract coresponding elements in Right from Left.
2VectorInt op_Subtraction(VectorInt Left, TVecInt Right)Subtract coresponding elements in Right from Left.
3VectorInt op_Subtraction(VectorInt Left, VectorInt Right)Subtract coresponding elements in Right from Left.
4VectorInt op_Subtraction(VectorInt Left, Int32 Right)Subtract Right from all elements in Left.
5VectorInt op_Subtraction(Int32 Left, VectorInt Right)Subtract all elements in Right from Left.

Overload 1: VectorInt op_Subtraction(TVecInt Left, VectorInt Right)

Subtract coresponding elements in Right from Left.

#NameTypeDescription
1LeftTVecIntsource TVecInt
2RightVectorInt

Result: stored in self (calling object), returns self for chaining

Overload 2: VectorInt op_Subtraction(VectorInt Left, TVecInt Right)

Subtract coresponding elements in Right from Left.

#NameTypeDescription
1LeftVectorInt
2RightTVecIntsource TVecInt

Result: stored in self (calling object), returns self for chaining

Overload 3: VectorInt op_Subtraction(VectorInt Left, VectorInt Right)

Subtract coresponding elements in Right from Left.

#NameTypeDescription
1LeftVectorInt
2RightVectorInt

Result: stored in self (calling object), returns self for chaining

Overload 4: VectorInt op_Subtraction(VectorInt Left, Int32 Right)

Subtract Right from all elements in Left.

#NameTypeDescription
1LeftVectorInt
2RightInt32

Result: stored in self (calling object), returns self for chaining

Overload 5: VectorInt op_Subtraction(Int32 Left, VectorInt Right)

Subtract all elements in Right from Left.

#NameTypeDescription
1LeftInt32
2RightVectorInt

Result: stored in self (calling object), returns self for chaining