dmd.root.array

Dynamic array implementation.

Members

Functions

peekSlice
inout(T)[] peekSlice(inout(Array!T)* array)

Exposes the given root Array as a standard D array.

reverse
T[] reverse(T[] a)

Reverse an array in-place.

split
void split(ref 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.

Structs

Array
struct Array(T)

Meta