Array to inspect.
static assert(isMutableArrayOfImmutables!string); static assert(isMutableArrayOfImmutables!wstring); static assert(isMutableArrayOfImmutables!dstring); static assert(!isMutableArrayOfImmutables!(immutable(string))); static assert(isMutableArrayOfImmutables!(immutable(int)[])); static assert(!isMutableArrayOfImmutables!(immutable(int[])));
Evaluates whether or not a passed array type is a mutable array of immutable elements, such as a string.