core.internal.container.array

Array container for internal usage.

struct Array

Types 1

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