Vector.op_Explicit Operator

Overload List

#SignatureDescription
1Vector op_Explicit(TVec AValue)Explicitely convert TVec to Vector.
2Vector op_Explicit(TVecInt AValue)Explicitely convert TVecInt to Vector.
3VectorInt op_Explicit(Vector AValue)Explicitely convert Vector to VectorInt.
4Double[] op_Explicit(Vector AValue)Explicitely convert Vector to array of doubles.
5Single[] op_Explicit(Vector AValue)Explicitely convert Vector to array of doubles.
6Vector op_Explicit(VectorInt AValue)Explicitely convert VectorInt to Vector.
7Vector op_Explicit(Single[] AValue)Explicitely convert array of single values to Vector.

Overload 1: Vector op_Explicit(TVec AValue)

Explicitely convert TVec to Vector.

#NameTypeDescription
1AValueTVecsource TVec

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

Remarks:

Copies all values from AValue to the result.

Overload 2: Vector op_Explicit(TVecInt AValue)

Explicitely convert TVecInt to Vector.

#NameTypeDescription
1AValueTVecIntsource TVecInt

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

Remarks:

Copies all values from AValue to the result.

Overload 3: VectorInt op_Explicit(Vector AValue)

Explicitely convert Vector to VectorInt.

#NameTypeDescription
1AValueVector

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

Remarks:

Copies all values from AValue to the result.

Overload 4: Double[] op_Explicit(Vector AValue)

Explicitely convert Vector to array of doubles.

#NameTypeDescription
1AValueVector

Returns: Double[]

Remarks:

Copies all values from AVector to an array of double.

Overload 5: Single[] op_Explicit(Vector AValue)

Explicitely convert Vector to array of doubles.

#NameTypeDescription
1AValueVector

Returns: Single[]

Remarks:

Copies all values from AVector to an array of single.

Overload 6: Vector op_Explicit(VectorInt AValue)

Explicitely convert VectorInt to Vector.

#NameTypeDescription
1AValueVectorInt

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

Remarks:

Copies all values from AValue to the result.

Overload 7: Vector op_Explicit(Single[] AValue)

Explicitely convert array of single values to Vector.

#NameTypeDescription
1AValueSingle[]

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

Remarks:

Copies all values from the AValue array to the result.