Function Function.attributeMixtureArray

Return the attribute list as an array of strings.

string[] attributeMixtureArray() immutable;

Example

nothrow pure int answer();
enum model = refract!(answer, "answer");
static assert(
    model.attributeMixtureArray == ["pure", "nothrow", "@system"]);