Overload List
| # | Signature | Description |
|---|---|---|
| 1 | VectorInt op_Explicit(TCplx[] AValue) | Explicitely convert array of complex values to VectorInt. |
| 2 | VectorInt op_Explicit(TMtxVec AValue) | Explicitely convert TMtxVec to VectorInt. |
| 3 | Byte[] op_Explicit(VectorInt AValue) | Explicitely convert VectorInt to array of integer. |
| 4 | Double[] op_Explicit(VectorInt AValue) | Explicitely convert VectorInt to array of doubles. |
| 5 | Int16[] op_Explicit(VectorInt AValue) | Explicitely convert VectorInt to array of integer. |
| 6 | Int32[] op_Explicit(VectorInt AValue) | Explicitely convert VectorInt to array of integer. |
| 7 | Single[] op_Explicit(VectorInt AValue) | Explicitely convert VectorInt to array of doubles. |
| 8 | VectorInt op_Explicit(Double[] AValue) | Explicitely convert array of double values to VectorInt. |
| 9 | VectorInt op_Explicit(Single[] AValue) | Explicitely convert array of single values to VectorInt. |
Overload 1: VectorInt op_Explicit(TCplx[] AValue)
Explicitely convert array of complex values to VectorInt.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | TCplx[] |
Result: stored in self (calling object), returns self for chaining
Copies all values from the complex array to the result with precision set at 32bit signed integer.
Overload 2: VectorInt op_Explicit(TMtxVec AValue)
Explicitely convert TMtxVec to VectorInt.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | TMtxVec | source TVec or TMtx |
Result: stored in self (calling object), returns self for chaining
Copies all values from AValue to the result with precision set at 32bit signed integer.
Overload 3: Byte[] op_Explicit(VectorInt AValue)
Explicitely convert VectorInt to array of integer.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | VectorInt |
Returns: Byte[]
Copies all values from AVector to an array of 16bit signed integers. If Precision does not match conversion will be performed.
Overload 4: Double[] op_Explicit(VectorInt AValue)
Explicitely convert VectorInt to array of doubles.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | VectorInt |
Returns: Double[]
Copies all values from AVector to an array of double.
Overload 5: Int16[] op_Explicit(VectorInt AValue)
Explicitely convert VectorInt to array of integer.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | VectorInt |
Returns: Int16[]
Copies all values from AVector to an array of 16bit signed integers. If Precision does not match conversion will be performed.
Overload 6: Int32[] op_Explicit(VectorInt AValue)
Explicitely convert VectorInt to array of integer.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | VectorInt |
Returns: Int32[]
Copies all values from AVector to an array of 32bit signed integers. If Precision does not match conversion will be performed.
Overload 7: Single[] op_Explicit(VectorInt AValue)
Explicitely convert VectorInt to array of doubles.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | VectorInt |
Returns: Single[]
Copies all values from AVector to an array of single.
Overload 8: VectorInt op_Explicit(Double[] AValue)
Explicitely convert array of double values to VectorInt.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | AValue | Double[] |
Result: stored in self (calling object), returns self for chaining
Copies all values from the double array to the result with precision set at 32bit signed integer;
Overload 9: VectorInt op_Explicit(Single[] AValue)
Explicitely convert array of single values to VectorInt.
| # | 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 with precision set at 32bit signed integer.