VectorInt.Multiply Operator

Overload List

#SignatureDescription
1class operator Multiply(const Left: TVecInt; const Right: VectorInt): VectorInt;Multiply all elements in Left with corresponding elements in Right.
2class operator Multiply(const Left: VectorInt; const Right: TVecInt): VectorInt;Multiply all elements in Left with corresponding elements in Right.
3class operator Multiply(const Left: VectorInt; const Right: VectorInt): VectorInt;Multiply all elements in Left with corresponding elements in Right.
4class operator Multiply(const Left: VectorInt; const Right: Integer): VectorInt;Multiply all elements in Left with Right.
5class operator Multiply(const Left: Integer; const Right: VectorInt): VectorInt;Multiply all elements in Right with Left.

Overload 1: class operator Multiply(const Left: TVecInt; const Right: VectorInt): VectorInt;

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: class operator Multiply(const Left: VectorInt; const Right: TVecInt): VectorInt;

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: class operator Multiply(const Left: VectorInt; const Right: VectorInt): VectorInt;

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: class operator Multiply(const Left: VectorInt; const Right: Integer): VectorInt;

Multiply all elements in Left with Right.

#NameTypeDescription
1LeftVectorInt
2RightInteger

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

Overload 5: class operator Multiply(const Left: Integer; const Right: VectorInt): VectorInt;

Multiply all elements in Right with Left.

#NameTypeDescription
1LeftInteger
2RightVectorInt

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