core.internal.container.array

Array container for internal usage.

struct Array

Types 1

structArray(T)
Fields
T * _ptr
size_t _length
Methods
void reset()
size_t length() @property const
void length(size_t nlength) @property
bool empty() @property const
inout(T) front() @property ref inout
inout(T) back() @property ref inout
inout(T) opIndex(size_t idx) ref inout
inout(T)[] opSlice() inout
inout(T)[] opSlice(size_t a, size_t b) inout
void insertBack()(auto ref T val)
void popBack()
void remove(size_t idx)
void swap(ref Array other)
Destructors