Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Vector op_Explicit(TVec AValue) | Explicitely convert TVec to Vector. |
| 2 | Vector op_Explicit(TVecInt AValue) | Explicitely convert TVecInt to Vector. |
| 3 | VectorInt op_Explicit(Vector AValue) | Explicitely convert Vector to VectorInt. |
| 4 | Double[] op_Explicit(Vector AValue) | Explicitely convert Vector to array of doubles. |
| 5 | Single[] op_Explicit(Vector AValue) | Explicitely convert Vector to array of doubles. |
| 6 | Vector op_Explicit(VectorInt AValue) | Explicitely convert VectorInt to Vector. |
| 7 | Vector op_Explicit(Single[] AValue) | Explicitely convert array of single values to Vector. |
Overload 1: Vector op_Explicit(TVec AValue)
Explicitely convert TVec to Vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | TVec | source TVec |
Result: stored in self (calling object), returns self for chaining
Copies all values from AValue to the result.
Overload 2: Vector op_Explicit(TVecInt AValue)
Explicitely convert TVecInt to Vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | TVecInt | source TVecInt |
Result: stored in self (calling object), returns self for chaining
Copies all values from AValue to the result.
Overload 3: VectorInt op_Explicit(Vector AValue)
Explicitely convert Vector to VectorInt.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Vector |
Result: stored in self (calling object), returns self for chaining
Copies all values from AValue to the result.
Overload 4: Double[] op_Explicit(Vector AValue)
Explicitely convert Vector to array of doubles.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Vector |
Returns: Double[]
Copies all values from AVector to an array of double.
Overload 5: Single[] op_Explicit(Vector AValue)
Explicitely convert Vector to array of doubles.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Vector |
Returns: Single[]
Copies all values from AVector to an array of single.
Overload 6: Vector op_Explicit(VectorInt AValue)
Explicitely convert VectorInt to Vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | VectorInt |
Result: stored in self (calling object), returns self for chaining
Copies all values from AValue to the result.
Overload 7: Vector op_Explicit(Single[] AValue)
Explicitely convert array of single values to Vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Single[] |
Result: stored in self (calling object), returns self for chaining
Copies all values from the AValue array to the result.