Function Function.attributeMixture

Return the attribute list as a string.

string attributeMixture() immutable;

Example

nothrow pure int answer();
enum model = refract!(answer, "answer");
static assert(model.attributeMixture == "pure nothrow @system");
}