The OpenD Programming Language

DynamicArray.AppendTypeOfThis

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

import containers.dynamicarray;
struct DynamicArray(T, Allocator = Mallocator, bool supportGC = shouldAddGCRange!T)
static if(is(typeof((T[] a, const T[] b) => a[0 .. b.length] = b[0 .. $])))
alias AppendTypeOfThis = const(typeof(this))

Meta