Array container for internal usage.
T * _ptr
size_t _length
void reset()
size_t length()
void length(size_t nlength)
bool empty()
inout(T) front()
inout(T) back()
inout(T) opIndex(size_t idx)
inout(T)[] opSlice()
inout(T)[] opSlice(size_t a, size_t b)
void insertBack()(auto ref T val)
void popBack()
void remove(size_t idx)
void swap(ref Array other)
~this