MatrixInt.op_Addition Operator

Overload List

#SignatureDescription
1MatrixInt op_Addition(MatrixInt Left, MatrixInt Right)Add coresponding elements in Left and Right.
2MatrixInt op_Addition(MatrixInt Left, TMtxInt Right)Add coresponding elements in Left and Right.
3MatrixInt op_Addition(MatrixInt Left, Int32 Right)Add Right to all elements in Left and return result.
4MatrixInt op_Addition(TMtxInt Left, MatrixInt Right)Add coresponding elements in Left and Right.
5MatrixInt op_Addition(Int32 Left, MatrixInt Right)Add left to all elements in Right and return result.

Overload 1: MatrixInt op_Addition(MatrixInt Left, MatrixInt Right)

Add coresponding elements in Left and Right.

#NameTypeDescription
1LeftMatrixInt
2RightMatrixInt

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

Overload 2: MatrixInt op_Addition(MatrixInt Left, TMtxInt Right)

Add coresponding elements in Left and Right.

#NameTypeDescription
1LeftMatrixInt
2RightTMtxIntsource TMtxInt

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

Overload 3: MatrixInt op_Addition(MatrixInt Left, Int32 Right)

Add Right to all elements in Left and return result.

#NameTypeDescription
1LeftMatrixInt
2RightInt32

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

Overload 4: MatrixInt op_Addition(TMtxInt Left, MatrixInt Right)

Add coresponding elements in Left and Right.

#NameTypeDescription
1LeftTMtxIntsource TMtxInt
2RightMatrixInt

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

Overload 5: MatrixInt op_Addition(Int32 Left, MatrixInt Right)

Add left to all elements in Right and return result.

#NameTypeDescription
1LeftInt32
2RightMatrixInt

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