DynamicArray.AppendTypeOfThis

Either const(typeof(this)) or typeof(this).

  1. alias AppendTypeOfThis = const(typeof(this))
    struct DynamicArray(T, Allocator = SpasmGCAllocator)
    static if(is(typeof((T[] a, const T[] b) => a[0 .. b.length] = b[0 .. $])))
    alias AppendTypeOfThis = const(typeof(this))
  2. alias AppendTypeOfThis = typeof(this)

Meta