FixedDynamicArray
@safe
struct FixedDynamicArray (
) {
}
- ~this
~this()
A postblit is present on this object, but not explicitly documented in the source.
- opIndex
inout(T) opIndex(size_t i)
- opSlice
inout(T)[] opSlice(size_t i, size_t j)
inout(T)[] opSlice()
- opSliceAssign
T[] opSliceAssign(U value)
T[] opSliceAssign(U value, size_t i, size_t j)
Slice assignment support.
- makeUninitializedOfLength
typeof(this) makeUninitializedOfLength(size_t length)
Make and return uninitialized array of length.
Dynamically allocated (heap) array with fixed length.
TODO Support allocators.