VectorInt.op_Division Operator

Overload List

#SignatureDescription
1VectorInt op_Division(TVecInt Left, VectorInt Right)Divide all elements in Left with coresponding elements in Right.
2VectorInt op_Division(VectorInt Left, TVecInt Right)Divide all elements in Left with coresponding elements in Right.
3VectorInt op_Division(VectorInt Left, VectorInt Right)Divide all elements in Left with coresponding elements in Right.
4VectorInt op_Division(VectorInt Left, Int32 Right)Divide all elements in Left with Right.
5VectorInt op_Division(Int32 Left, VectorInt Right)Divide Left with all elements Right.

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

Divide all elements in Left with coresponding elements in Right.

#NameTypeDescription
1LeftTVecIntsource TVecInt
2RightVectorInt

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

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

Divide all elements in Left with coresponding elements in Right.

#NameTypeDescription
1LeftVectorInt
2RightTVecIntsource TVecInt

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

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

Divide all elements in Left with coresponding elements in Right.

#NameTypeDescription
1LeftVectorInt
2RightVectorInt

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

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

Divide all elements in Left with Right.

#NameTypeDescription
1LeftVectorInt
2RightInt32

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

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

Divide Left with all elements Right.

#NameTypeDescription
1LeftInt32
2RightVectorInt

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