FixedDynamicArray

Dynamically allocated (heap) array with fixed length. TODO: Move as many of members as possible to FixedArrayStore.

Destructor

~this
~this()

Destruct.

Postblit

this(this)
this(this)
Undocumented in source.

Members

Functions

opIndex
inout(T) opIndex(size_t i)

Get element at index i.

opSlice
inout(T)[] opSlice(size_t i, size_t j)
inout(T)[] opSlice()

Slice support.

opSliceAssign
T[] opSliceAssign(U value)
T[] opSliceAssign(U value, size_t i, size_t j)

Slice assignment support.

Static functions

makeUninitializedOfLength
typeof(this) makeUninitializedOfLength(size_t length)

Make and return uninitialized array of length.

Meta