Function.attributeMixtureArray

Return the attribute list as an array of strings.

struct Function
string[]
attributeMixtureArray
()

Examples

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

Meta