Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void CopyToArray(DewArray<TCplx> &Dst, int Index, int Len); | |
| 2 | void CopyToArray(DewArray<TSCplx> &Dst, int Index, int Len); | |
| 3 | void CopyToArray(DewArray<double> &Dst, int Index, int Len); | |
| 4 | void CopyToArray(DewArray<float> &Dst, int Index, int Len); | |
| 5 | void CopyToArray(DewArray<float> &Dst); | Copies calling object data to array. |
| 6 | void CopyToArray(DewArray<double> &Dst); | Copies calling object data to array. |
| 7 | void CopyToArray(DewArray<TCplx> &Dst); | Copies calling object data to array. |
| 8 | void CopyToArray(DewArray<int> &Dst); | Copies calling object data to array. |
| 9 | void CopyToArray(DewArray<int> &Dst, int Index, int Len); | Copies calling object data to array. |
Overload 1: void CopyToArray(DewArray<TCplx> &Dst, int Index, int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewArray<TCplx> & | |
| 2 | Index | int | |
| 3 | Len | int |
Overload 2: void CopyToArray(DewArray<TSCplx> &Dst, int Index, int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewArray<TSCplx> & | |
| 2 | Index | int | |
| 3 | Len | int |
Overload 3: void CopyToArray(DewArray<double> &Dst, int Index, int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewArray<double> & | |
| 2 | Index | int | |
| 3 | Len | int |
Overload 4: void CopyToArray(DewArray<float> &Dst, int Index, int Len);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewArray<float> & | |
| 2 | Index | int | |
| 3 | Len | int |
Overload 5: void CopyToArray(DewArray<float> &Dst);
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewArray<float> & |
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 6: void CopyToArray(DewArray<double> &Dst);
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewArray<double> & |
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 7: void CopyToArray(DewArray<TCplx> &Dst);
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewArray<TCplx> & |
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 8: void CopyToArray(DewArray<int> &Dst);
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewArray<int> & |
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 9: void CopyToArray(DewArray<int> &Dst, int Index, int Len);
Copies calling object data to array.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Dst | DewArray<int> & | |
| 2 | Index | int | |
| 3 | Len | int |
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.