FixedDynamicArray

Dynamically allocated (heap) array with fixed length.

TODO Support allocators.

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.

withLength
typeof(this) withLength(size_t length)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta