Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page.
Requires a signed-in GitHub account. This works well for small changes.
If you'd like to make larger changes you may want to consider using
a local clone.
dmd.root.array
Compiler implementation of the
D programming language.
Authors:
License:
Source root/array.d
Documentation https://dlang.org/phobos/dmd_root_array.html
- @property T[]
asDArray
(T)(ref Array!Tarray
); - Exposes the given root Array as a standard D
array
.Parameters:Array!T array
the array
to expose.Returns:The givenarray
exposed to a standard Darray
. - void
split
(T)(ref Array!Tarray
, size_tindex
, size_tlength
); - Splits the
array
atindex
and expands it to make room forlength
elements by shifting everything pastindex
to the right.Parameters:Array!T array
the array
tosplit
.size_t index
the index
tosplit
thearray
from.size_t length
the number of elements to make room for starting at index
.
Copyright © 1999-2018 by the D Language Foundation | Page generated by
Ddoc on Tue Mar 13 17:31:30 2018