dmd.root.array

Dynamic array implementation.

Members

Functions

reverse
T[] reverse(T[] a)

Reverse an array in-place.

split
void split(Array!T array, size_t index, size_t length)

Splits the array at index and expands it to make room for length elements by shifting everything past index to the right.

Properties

peekSlice
inout(T)[] peekSlice [@property getter]

Exposes the given root Array as a standard D array.

Structs

Array
struct Array(T)
Undocumented in source but is binding to C++. You might be able to learn more by searching the web for its name.

Meta