How are arrays manipulated in "D"?
|
|
Here you can find a complete reference of array manipulations in D. |
||
|
|
|
|
FYI. You can also copy with:
|
||
|
|
|
|
To slice arrays, it's a simple matter of using
which sets b[0] to a[5] and b[1] to a[6]. But remember that this is a reference to the elements in a, not another copy of them. If you change b[0], this also affects a[5]. If you want to copy, you have to do:
to achieve this. This is because b is a static array; in the first code block, it was dynamic (effectively a pointer to somewhere within another array). |
||
|
|
