VectorInt.op_Multiply Operator

Overload List

#SignatureDescription
1VectorInt op_Multiply(TVecInt Left, VectorInt Right)Multiply all elements in Left with corresponding elements in Right.
2VectorInt op_Multiply(VectorInt Left, TVecInt Right)Multiply all elements in Left with corresponding elements in Right.
3VectorInt op_Multiply(VectorInt Left, VectorInt Right)Multiply all elements in Left with corresponding elements in Right.
4VectorInt op_Multiply(VectorInt Left, Int32 Right)Multiply all elements in Left with Right.
5VectorInt op_Multiply(Int32 Left, VectorInt Right)Multiply all elements in Right with Left.

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

Multiply all elements in Left with corresponding elements in Right.

#NameTypeDescription
1LeftTVecIntsource TVecInt
2RightVectorInt

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

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

Multiply all elements in Left with corresponding elements in Right.

#NameTypeDescription
1LeftVectorInt
2RightTVecIntsource TVecInt

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

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

Multiply all elements in Left with corresponding elements in Right.

#NameTypeDescription
1LeftVectorInt
2RightVectorInt

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

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

Multiply all elements in Left with Right.

#NameTypeDescription
1LeftVectorInt
2RightInt32

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

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

Multiply all elements in Right with Left.

#NameTypeDescription
1LeftInt32
2RightVectorInt

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