Overload List
| # | Signature | Description |
|---|---|---|
| 1 | procedure CopyToArray(var Dst: TCplxArray); | Copies calling object data to array. |
| 2 | procedure CopyToArray(var Dst: TDoubleArray); | Copies calling object data to array. |
| 3 | procedure CopyToArray(var Dst: TIntegerArray); | Copies calling object data to array. |
| └ indexed: procedure CopyToArray(var Dst: TIntegerArray; Index: Integer; Len: Integer); | ||
| 4 | procedure CopyToArray(var Dst: TSingleArray); | Copies calling object data to array. |
Overload 1: procedure CopyToArray(var Dst: TCplxArray);
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TCplxArray |
Result: stored in self (calling object)
Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length/2, if the Complex is false.
Overload 2: procedure CopyToArray(var Dst: TDoubleArray);
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TDoubleArray |
Result: stored in self (calling object)
Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length*2, if the Complex is true.
Overload 3: procedure CopyToArray(var Dst: TIntegerArray);
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TIntegerArray |
Result: stored in self (calling object)
Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length*2, if the Complex is true.
Indexed: procedure CopyToArray(var Dst: TIntegerArray; Index: Integer; Len: Integer);
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TIntegerArray | |
| 2 | Index | Integer | start index |
| 3 | Len | Integer | element count |
Result: stored in self (calling object)
Copies Len elements from the calling object starting at Index to Dst array. The size of the Dst array is set to Len or Len*2, if the Complex is true.
Overload 4: procedure CopyToArray(var Dst: TSingleArray);
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | TSingleArray |
Result: stored in self (calling object)
Copies Length elements from the calling object to Dst array. The size of the Dst array is set to Length or Length*2, if the Complex is true.